8 lines
133 B
NASM
8 lines
133 B
NASM
|
; @language: Z80 ASM
|
||
|
; Simple possible code test:
|
||
|
; outputs a single character "A" on IO port 0, then halts
|
||
|
|
||
|
ld a,'A'
|
||
|
out (1),a
|
||
|
halt
|