mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-22 22:01:06 -06:00
start refactoring shit: more accurate timing and way of counting cycles.
This commit is contained in:
@ -22,17 +22,17 @@
|
||||
namespace ARMInterpreter
|
||||
{
|
||||
|
||||
s32 A_B(ARM* cpu);
|
||||
s32 A_BL(ARM* cpu);
|
||||
s32 A_BX(ARM* cpu);
|
||||
s32 A_BLX_REG(ARM* cpu);
|
||||
void A_B(ARM* cpu);
|
||||
void A_BL(ARM* cpu);
|
||||
void A_BX(ARM* cpu);
|
||||
void A_BLX_REG(ARM* cpu);
|
||||
|
||||
s32 T_BCOND(ARM* cpu);
|
||||
s32 T_BX(ARM* cpu);
|
||||
s32 T_BLX_REG(ARM* cpu);
|
||||
s32 T_B(ARM* cpu);
|
||||
s32 T_BL_LONG_1(ARM* cpu);
|
||||
s32 T_BL_LONG_2(ARM* cpu);
|
||||
void T_BCOND(ARM* cpu);
|
||||
void T_BX(ARM* cpu);
|
||||
void T_BLX_REG(ARM* cpu);
|
||||
void T_B(ARM* cpu);
|
||||
void T_BL_LONG_1(ARM* cpu);
|
||||
void T_BL_LONG_2(ARM* cpu);
|
||||
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user