A83: SOS help...
[Prev][Next][Index][Thread]
A83: SOS help...
Can anyone please tell me why this ASM prog isn't acknowledged by SOS as being
an ASM prog?
.nolist
#define equ .equ
#define EQU .equ
#define END .end
#include "ti83asm.inc"
#include "tokens.inc"
#include "sos.inc"
.org $9327
.list
ccf
jr start
.dw libs-$9327
.dw description
libs:
.db "ZLIB",0,0,0,0,lib2,vec0
.db $FF
description:
.db "Random",0
start:
ld b,10
call vector0
ld l,a
ld h,0
call _disphl
call _getkey
.end
END
...........
there.. thanks in advance.