10 lines
138 B
NASM
10 lines
138 B
NASM
|
|
; Prints instruction at ES:BX in human-readable form
|
|
disasm: call print_esbx
|
|
call space
|
|
mov si, instr.db
|
|
call putcs
|
|
call crlf
|
|
ret
|
|
|