A86: Arg
[Prev][Next][Index][Thread]
A86: Arg
Why doesn't this work?
I'm trying to get it to write 'SchedulerHS' on the top of the screen,
and 'by Slightly Immoral Technologies' below it. But when I run it only
the 'SchedulerHS' part shows up. I haven't been doing Asm for long so
I'm probably overlooking something that is extremely obvious to you
guys.
#include "ti86asm.inc"
.org _asm_exec_ram
call _clrscrn
call _runindicoff
ld hl, 0820
ld (_penrow), hl
ld hl, startmessage
call _vputs
ld hl, 1618
ld (_penrow), hl
ld hl, creditmessage
call _vputs
ret
startmessage: .db "SchedulerHS",00
creditmessage: .db "by Slightly Immoral Technologies",00
.end
Follow-Ups: