1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-07-13 15:29:01 +00:00

Fix label name clash

This commit is contained in:
Karol Stasiak 2018-06-18 22:40:32 +02:00
parent 13b06bd505
commit bf1a3a6677

View File

@ -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
}