top of page
Projects
process_input_line:
ld hl, input_buffer
ld a, (hl)
;; C == CALL
cp 'c'
jr z, call_handler
cp 'C'
jr z, call_handler
;; D == DUMP
cp 'd'
jr z, dump_handler
cp 'D'
jr z, dump_handler
;; I == INPUT
cp 'i'
jr z, input_handler
cp 'I'
jr z, input_handler
My blog about designing and building a vintage CPU (not computer, CPU) from 1980's era parts.
My blog about writing the Z-80 assembler I never had as a (relatively geeky) kid.
bottom of page