mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-07 15:16:28 +00:00
A64: Implement ADD_shifted
This commit is contained in:
@@ -28,9 +28,11 @@ 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__ } } },
|
||||
#define A64OPC(name, type, ...) { Opcode::A64##name, { #name, type, { __VA_ARGS__ } } },
|
||||
#include "opcodes.inc"
|
||||
#undef OPCODE
|
||||
#undef A32OPC
|
||||
#undef A64OPC
|
||||
}};
|
||||
|
||||
} // namespace OpcodeInfo
|
||||
|
||||
Reference in New Issue
Block a user