Update coding style for asm

This commit is contained in:
Dan Sanderson
2025-11-18 00:47:49 -08:00
parent 18e9c6f6a0
commit cfb55a89d4
2 changed files with 11 additions and 11 deletions

View File

@@ -20,15 +20,15 @@ _cpeekcolor:
php
sei
lda $d030
lda $D030
ora #$01
sta $d030
sta $D030
ldy #0
lda (ptr1),y
tay
lda $d030
and #$fe
sta $d030
lda $D030
and #$FE
sta $D030
plp
tya

View File

@@ -113,19 +113,19 @@ putchar:
lda ptr4 + 1
clc
adc #>$d000
adc #>$D000
sta ptr4 + 1
php
sei
lda $d030
lda $D030
ora #$01
sta $d030
sta $D030
lda CHARCOLOR
sta (ptr4),y ; Set color
lda $d030
and #$fe
sta $d030
lda $D030
and #$FE
sta $D030
plp
rts