mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-03-07 18:56:28 +00:00
Implement thumb1_LDR_literal, thumb1_LDR_imm_t1
This commit is contained in:
@@ -36,3 +36,13 @@ OPCODE(And, T::U32, T::U32, T::U32
|
||||
OPCODE(Eor, T::U32, T::U32, T::U32 )
|
||||
OPCODE(Or, T::U32, T::U32, T::U32 )
|
||||
OPCODE(Not, T::U32, T::U32 )
|
||||
|
||||
// Memory access
|
||||
OPCODE(ReadMemory8, T::U8, T::U32 )
|
||||
OPCODE(ReadMemory16, T::U16, T::U32 )
|
||||
OPCODE(ReadMemory32, T::U32, T::U32 )
|
||||
OPCODE(ReadMemory64, T::U64, T::U32 )
|
||||
OPCODE(WriteMemory8, T::Void, T::U32, T::U8 )
|
||||
OPCODE(WriteMemory16, T::Void, T::U32, T::U16 )
|
||||
OPCODE(WriteMemory32, T::Void, T::U32, T::U32 )
|
||||
OPCODE(WriteMemory64, T::Void, T::U32, T::U64 )
|
||||
|
||||
Reference in New Issue
Block a user