# Macro "go" # Usage: Type go or g and hit enter # The macro "go" sets a break point at the start of the # assembler program and starts executing the program define go break asm_main r end # Macro "n" # Usage: Type n and hit enter # The macro "n" steps through the program and prints # debugging information define n ni printf "eax=%x ebx=%x\n",$eax,$ebx disassemble $pc $pc+15 end