mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-16 20:06:36 +00:00
21 lines
532 B
NASM
21 lines
532 B
NASM
|
|
CHAN_OPEN equ 5633
|
|
PRINT equ 8252
|
|
|
|
org 0x5ccb
|
|
loop
|
|
ld a, 2 ; 3E 02
|
|
call CHAN_OPEN ; CD 01 16
|
|
ld de, text ; 11 0E 7F
|
|
ld bc, textend-text ; 01 0E 00
|
|
call PRINT ; C3 3C 20
|
|
jmp loop
|
|
|
|
text defb 'Hello, World!' ; 48 65 6C 6C 6F 2C 20 57
|
|
; 6F 72 6C 64 21
|
|
defb 13 ; 0D
|
|
textend
|
|
|
|
org 0xff57
|
|
defb 00h
|