mirror of
https://github.com/KarolS/millfork.git
synced 2025-01-16 16:31:04 +00:00
Fix label name clash
This commit is contained in:
parent
13b06bd505
commit
bf1a3a6677
@ -1,15 +1,15 @@
|
|||||||
|
|
||||||
inline asm byte __mul_u8u8u8() {
|
inline asm byte __mul_u8u8u8() {
|
||||||
? LDA #0
|
? LDA #0
|
||||||
? JMP start
|
? JMP __mul_u8u8u8_start
|
||||||
add:
|
__mul_u8u8u8_add:
|
||||||
CLC
|
CLC
|
||||||
ADC __reg.lo
|
ADC __reg.lo
|
||||||
loop:
|
__mul_u8u8u8_loop:
|
||||||
ASL __reg.lo
|
ASL __reg.lo
|
||||||
start:
|
__mul_u8u8u8_start:
|
||||||
LSR __reg.hi
|
LSR __reg.hi
|
||||||
BCS add
|
BCS __mul_u8u8u8_add
|
||||||
BNE loop
|
BNE __mul_u8u8u8_loop
|
||||||
? RTS
|
? RTS
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user