view interps/cfunge/cfunge-src/etc/example.gdbinit @ 12500:e48c08805365 draft default tip

<b_jonas> ` learn \'The password of the month is Cthulhuquagdonic Mothraquagdonic Narwhalicorn.\' # https://logs.esolangs.org/libera-esolangs/2024-04.html#lKE Infinite craft
author HackEso <hackeso@esolangs.org>
date Wed, 01 May 2024 06:39:10 +0000
parents 859f9b4339e6
children
line wrap: on
line source

define tr9
set variable setting_trace_level=9
end

document tr9
Set funge trace level to 9
end


define brkcell
break execute_instruction if (ip->position.x == $arg0) && (ip->position.y == $arg1)
end

document brkcell
Break when any IP reach that specific cell.
brkcell x y
end


define brkinst
break execute_instruction if (opcode == $arg0)
end

document brkinst
Break when the given instruction is executed.
brkinst 'char'
end