mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
sh2 drc: speed optimization and bugfixing
This commit is contained in:
parent
c3ebe082d3
commit
7869213d35
5 changed files with 61 additions and 55 deletions
|
@ -1225,6 +1225,11 @@ enum { xAX = 0, xCX, xDX, xBX, xSP, xBP, xSI, xDI, // x86-64,i386 common
|
|||
rcache_free_tmp(tmp_); \
|
||||
} while (0)
|
||||
|
||||
#define emith_carry_to_t(sr, is_sub) do { \
|
||||
emith_rorc(sr); \
|
||||
emith_rol(sr, sr, 1); \
|
||||
} while (0)
|
||||
|
||||
#define emith_tpop_carry(sr, is_sub) \
|
||||
emith_lsr(sr, sr, 1)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue