mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-02 12:44:34 +01:00
IR: Split off A32 specific opcodes
This commit is contained in:
parent
b1f0cf9278
commit
8bef20c24d
12 changed files with 243 additions and 231 deletions
|
|
@ -27,8 +27,10 @@ struct Meta {
|
|||
|
||||
static const std::map<Opcode, Meta> opcode_info {{
|
||||
#define OPCODE(name, type, ...) { Opcode::name, { #name, type, { __VA_ARGS__ } } },
|
||||
#define A32OPC(name, type, ...) { Opcode::A32##name, { #name, type, { __VA_ARGS__ } } },
|
||||
#include "opcodes.inc"
|
||||
#undef OPCODE
|
||||
#undef A32OPC
|
||||
}};
|
||||
|
||||
} // namespace OpcodeInfo
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue