u32 Read_Opcode(u32 _Address) { if (_Address == 0x00000000) { // FIXME use assert? PanicAlert("Program tried to read an opcode from [00000000]. It has crashed."); return 0x00000000; } return Read_Instruction(_Address); }
Opcode ReadUnchecked_Instruction(u32 address, bool resolveReplacements) { Opcode inst = Opcode(ReadUnchecked_U32(address)); return Read_Instruction(address, resolveReplacements, inst); }
Opcode Read_Opcode_JIT(u32 address) { return Read_Instruction(address); }