mirror of
https://github.com/rafaelvcaetano/melonDS-android-lib.git
synced 2025-03-01 09:55:53 +00:00
16 lines
168 B
C++
16 lines
168 B
C++
|
|
#ifndef ARMINTERPRETER_BRANCH_H
|
|
#define ARMINTERPRETER_BRANCH_H
|
|
|
|
namespace ARMInterpreter
|
|
{
|
|
|
|
s32 A_B(ARM* cpu);
|
|
s32 A_BL(ARM* cpu);
|
|
|
|
s32 T_BCOND(ARM* cpu);
|
|
|
|
}
|
|
|
|
#endif
|