mirror of
https://github.com/pkali/scorch_src.git
synced 2026-05-20 22:34:21 +02:00
23 lines
444 B
NASM
23 lines
444 B
NASM
; @com.wudsn.ide.asm.mainsourcefile=scorch.asm
|
|
|
|
.IF *>0 ;this is a trick that prevents compiling this file alone
|
|
|
|
DLIinterruptGraph = 0
|
|
;--------------------------------------------------
|
|
.macro SetDLI
|
|
; SetDLI #WORD
|
|
; Initialises Display List Interrupts
|
|
LDY # <:1
|
|
LDX # >:1
|
|
jsr _SetDLIproc
|
|
.endm
|
|
.proc _SetDLIproc
|
|
; LDA #$C0
|
|
; STY VDSLST
|
|
; STX VDSLST+1
|
|
; STA NMIEN
|
|
rts
|
|
.endp
|
|
|
|
.ENDIF
|