1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-07-05 09:28:54 +00:00

Z80: Use RRA instead of RR A in stdlib

This commit is contained in:
Karol Stasiak 2018-08-01 10:16:20 +02:00
parent e914ad6d7b
commit ec9dba9d27

View File

@ -24,12 +24,12 @@ asm byte hi_nibble_to_hex(byte a) {
#if CPUFEATURE_GAMEBOY
SWAP A
#else
RR A
RR A
RR A
RR A
RRA
RRA
RRA
RRA
#endif
JP lo_nibble_to_hex
? JP lo_nibble_to_hex
}
asm byte lo_nibble_to_hex(byte a) {