I am trying to make a doors asm app that just has an icon at the moment. Why do I get this error?
Code:
Code:
.nolist
#define TASM
#include "ti83plus.inc"
#include "dcs7.inc"
.list
.org progstart
.db $BB, $6D
Init:
xor d
ret
jr Start
.dw $0000
.db $07, $00
.dw Icon
.dw $0000
Icon:
.db %11111111,%11111111
.db %10000000,%00000001
.db %10000000,%00000001
.db %10000000,%00000001
.db %10000000,%00000001
.db %10000000,%00000001
.db %10000000,%00000001
.db %10000000,%00000001
.db %10000000,%00000001
.db %10000000,%00000001
.db %10000000,%00000001
.db %10000000,%00000001
.db %10000000,%00000001
.db %10000000,%00000001
.db %10000000,%00000001
.db %11111111,%11111111
Start:
ret