mirror of
https://github.com/cc65/cc65.git
synced 2026-04-25 06:17:58 +00:00
Fixed first letter of comments (should be upper case).
This commit is contained in:
@@ -19,14 +19,14 @@ tosmodax:
|
||||
; modulo operation is the same as that of the left operand.
|
||||
|
||||
pha
|
||||
ldy #1 ; prepare lhs operant hi-byte fetch
|
||||
ldy #1 ; Prepare lhs operant hi-byte fetch
|
||||
lda (sp),y
|
||||
sta tmp1 ; save post negation indicator to tmp1
|
||||
pla ; back to entry accu
|
||||
sta tmp1 ; Save post negation indicator to tmp1
|
||||
pla ; Back to entry accu
|
||||
jsr absvaludiv16
|
||||
ldx sreg+1 ; remainder to return registers
|
||||
ldx sreg+1 ; Remainder to return registers
|
||||
lda sreg
|
||||
ldy tmp1 ; fetch indicator
|
||||
ldy tmp1 ; Fetch indicator
|
||||
bmi negate
|
||||
rts
|
||||
negate: jmp negax
|
||||
|
||||
Reference in New Issue
Block a user