mirror of
https://github.com/citra-emu/citra.git
synced 2025-07-06 10:00:11 +00:00
19 lines
332 B
C++
19 lines
332 B
C++
#include "Instruction.h"
|
|
#include "Types.h"
|
|
|
|
class Branch : public Instruction
|
|
{
|
|
public:
|
|
enum class Form
|
|
{
|
|
Immediate, Register
|
|
};
|
|
|
|
bool Decode() override;
|
|
void GenerateInstructionCode(InstructionBlock* instruction_block) override;
|
|
private:
|
|
Form form;
|
|
bool link;
|
|
u32 imm24;
|
|
Register rm;
|
|
}; |