Hi guys.
This is my code:
output "ejemplo1.bin" db #fe dw START dw END org #8500 START: ld a, [#8600] ld b, a ld a, [#8601] add a, b ld [#8602], a ret END:
And this is what I'm getting when trying to compile it:
C:\Users\Daniel\Programming\MSX\asm>sjasm ejemplo1.asm
Sjasm Z80 Assembler v0.42c - www.xl2s.tk
ejemplo1.asm(1) : Unrecognized instruction: "ejemplo1.
ejemplo1.asm(3) : Label not found: fe
ejemplo1.asm(4) : Unrecognized instruction: start
ejemplo1.asm(5) : Duplicate labelname: dw
Any idea what I'm doing wrong?
Please help. Thanks.
Login or register to post comments