Online Assembler
Hi,
Has anyone tried this?
clrhome.org/asm/
I tried building the example to a .tap file, saving it and loading it into an emulator, but it does not seem to load.
Thanks
Has anyone tried this?
clrhome.org/asm/
I tried building the example to a .tap file, saving it and loading it into an emulator, but it does not seem to load.
Thanks
Comments
worldofspectrum.org/forums/discussion/39512/redirect/p1
This little code snippet will print "Hello world! " at 2,2 (followed by the number 0 as that is loaded into the BC register pair before the code returns to BASIC). Build this as a .TAP and it should run fine on a Spectrum.
.org $5cd2 ld hl, Message next: ld a,(hl) or a jr z,done rst 10h inc hl jr next done: ld bc,0 ret Message: .db 22,2,2,"Hello world! ",0