1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-08-13 02:28:59 +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() { 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
} }