Changed LookupUtil to use stub indexes instead of iterating over global labels and symbol definitions. Added basic test for Structure View.

This commit is contained in:
2021-07-26 10:50:22 +02:00
parent 89ecaeb613
commit 3165d99fc2
6 changed files with 141 additions and 30 deletions
@@ -0,0 +1,25 @@
PIC_WIDTH = 320
PIC_HEIGHT equ 256
DEBUG_LEVEL set 10
entry:
bsr init
bsr main
bsr exit
rts
init
move.w #PIC_HEIGHT,d1
.looph move.w #PIC_WIDTH,d0
.loopw clr.b (a0)+
subq.w #1,d0
bne.s .loopw
subq.w #1,d1
bne.s .looph
rts
main moveq.l #0,d0
rts
exit illegal
rts