A86: AAAAAARGH!!!!
[Prev][Next][Index][Thread]
A86: AAAAAARGH!!!!
I'm about to pull my hair out!!! Why won't the menu title appear normally in
this program! PLEASE help me before bad things happen! :)
#include "ti86asm.inc"
#include "asm86.h"
#include "ti86und.inc"
.org _asm_exec_ram
nop
jp Start
.dw 0
.dw ProgName
ProgName: .db "Mogsoft's Nerd Quest 1",0
Start:
call _flushallmenus
call _runindicoff
call _clrScrn
set textInverse,(iy+textflags)
ld hl,$0000
ld (_curRow),hl
ld hl,TitleInv
call _puts
res textInverse,(iy+textflags)
call _AnyKey
ret
_AnyKey:
call _getky
or a
jr z,_AnyKey
ret
;Data Section
TitleInv: " Nerd Quest I",0
.end
Follow-Ups: