mirror of
https://github.com/KarolS/millfork.git
synced 2025-01-11 12:29:46 +00:00
Z80: Use RRA instead of RR A in stdlib
This commit is contained in:
parent
e914ad6d7b
commit
ec9dba9d27
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user