Searching in the Debugger


The Find function in the debugger may be activated by the right-click menu on either the disassembly pane or the memory dump pane, by pressing F3, or clicking the button. It allows you to search for data in three ways:

Find Text


Debugger Text Search

Search for a given string in memory. Either case-sensitive or not, with the ability to enter wildcard characters.

Find Hex Data


Debugger Hex Search

Search for a byte sequence by entering multiple hexadecimal byte values separated by space.

Find Assembler


Debugger Assembler Search

Search for particular Z80 instructions. This is not case sensitive, and accepts either ? for a single character wildcard, or * for a multiple character wildcard. The above example would match LD (#B7C4),HL for example.