Emulator: working decoding logic, outputting terminal to stdout

This commit is contained in:
2025-02-07 08:18:14 +01:00
parent 882f258ad8
commit b667561da9
2 changed files with 137 additions and 31 deletions

View File

@ -0,0 +1,7 @@
; @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