1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-23 19:29:37 +00:00

fix tab indentation

This commit is contained in:
Mariano Dominguez 2023-01-05 21:27:54 -08:00
parent 30df733c31
commit 29a80065cc

View File

@ -18,7 +18,7 @@
asl a ;adjust voice *2 for offset in x
tax
pla ;get pitch from stack
sta AUDF1,x ; store pitch
sta AUDF1,x ;store pitch
lda #0
sta AUDCTL
lda #3
@ -28,12 +28,12 @@
asl a
asl a
asl a
clc ; setup for adding volume
adc STORE2 ; add volume
sta AUDC1,x ; volume + distortion in control channel
clc ;setup for adding volume
adc STORE2 ;add volume
sta AUDC1,x ;volume + distortion in control channel
rts
.endproc
; reserve 2 bytes for temp storage
;reserve 2 bytes for temp storage
.bss
STORE1: .res 1
STORE2: .res 1