two frame, no audio
This commit is contained in:
parent
1b9769213a
commit
58fecb09fb
1 changed files with 8 additions and 4 deletions
12
dither4.s
12
dither4.s
|
@ -209,7 +209,11 @@ wait_loop:
|
||||||
cpy #130
|
cpy #130
|
||||||
bne each_scanline
|
bne each_scanline
|
||||||
;audio_inc
|
;audio_inc
|
||||||
inc frame_counter
|
|
||||||
|
lda frame_counter
|
||||||
|
eor #1
|
||||||
|
sta frame_counter
|
||||||
|
|
||||||
jmp wait_start
|
jmp wait_start
|
||||||
.endscope
|
.endscope
|
||||||
.endmacro
|
.endmacro
|
||||||
|
@ -218,15 +222,15 @@ wait_loop:
|
||||||
sta scanline
|
sta scanline
|
||||||
lda frame_counter
|
lda frame_counter
|
||||||
bne run_frame2
|
bne run_frame2
|
||||||
run_frame frame1_palette1, frame1_palette2, frame1_palette3
|
|
||||||
run_frame2:
|
|
||||||
run_frame frame2_palette1, frame2_palette2, frame2_palette3
|
run_frame frame2_palette1, frame2_palette2, frame2_palette3
|
||||||
|
run_frame2:
|
||||||
|
run_frame frame1_palette1, frame1_palette2, frame1_palette3
|
||||||
|
|
||||||
.endproc
|
.endproc
|
||||||
|
|
||||||
|
|
||||||
.proc dli_handler
|
.proc dli_handler
|
||||||
lda #0
|
lda #1
|
||||||
sta frame_counter
|
sta frame_counter
|
||||||
rti
|
rti
|
||||||
.endproc
|
.endproc
|
||||||
|
|
Loading…
Reference in a new issue