Expand description
Utilities for disassembling Z80 machine code.
Functionsยง
- disasm_
memory - Interprets a given
memory
chunk as machine code instructions. - disasm_
memory_ once - Interprets a given
memory
chunk as a machine code instruction. - disasm_
memory_ print_ text - Prints disassembled instructions to stdout as lines of text.
- disasm_
memory_ write_ text - Instead of providing your own
debug
function to disasm_memory, provide a fmt::Write implementation which will get disassembled instructions written as lines of text.