I am trying to compile this code and i am getting 3 fatal erros on .org, .start and .rom:
;--------------------------------------------
; PROGRAMA HELLO WORLD, PARA O MSX
;--------------------------------------------
.org 8000h
.start 8000h
.bin
INITXT equ 050eh
LDIRVM equ 0744h
INICIO:
call INITXT
ld BC, 12
ld DE, 0
ld HL, TEXTO
call LDIRVM
FIM:
jp FIM
TEXTO:
db "Hello World!"
Login or register to post comments