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