1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-15 02:29:32 +00:00

Fix coding style.

This commit is contained in:
Piotr Fusik 2018-03-09 18:48:24 +01:00
parent 970c5f6184
commit 18ada212e7

View File

@ -1,5 +1,5 @@
; ;
; Piotr Fusik, 07.03.2018 ; Piotr Fusik, 09.03.2018
; originally by Ullrich von Bassewitz ; originally by Ullrich von Bassewitz
; ;
; CC65 runtime: Decrement eax by value in Y ; CC65 runtime: Decrement eax by value in Y
@ -13,15 +13,24 @@ deceaxy:
sec sec
sbc tmp1 sbc tmp1
bcs @L9 bcs @L9
; borrow from X
; Borrow from X.
dex dex
cpx #$ff cpx #$FF
bne @L9 bne @L9
; X wrapped from zero to $ff, borrow from sreg
; X wrapped from zero to $FF, borrow from sreg.
dec sreg dec sreg
cpx sreg cpx sreg
bne @L9 bne @L9
; sreg wrapped from zero to $ff, borrow from sreg+1
; sreg wrapped from zero to $FF, borrow from sreg+1.
dec sreg+1 dec sreg+1
; Done.
@L9: rts @L9: rts