mirror of
https://github.com/peterdell/wudsn-ide.git
synced 2024-12-21 18:29:40 +00:00
12 lines
213 B
NASM
12 lines
213 B
NASM
; WUDSN IDE example ATASM source file
|
|
|
|
|
|
* = $2000 ;Start of code block
|
|
|
|
start lda #0 ;Disable screen DMA
|
|
sta 559
|
|
|
|
loop lda $d40b ;Load VCOUNT
|
|
sta $d40a
|
|
sta $d01a ;Change background color
|
|
jmp loop |