Пример #1
0
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);
}
Пример #2
0
Opcode ReadUnchecked_Instruction(u32 address, bool resolveReplacements)
{
	Opcode inst = Opcode(ReadUnchecked_U32(address));
	return Read_Instruction(address, resolveReplacements, inst);
}
Пример #3
0
Opcode Read_Opcode_JIT(u32 address)
{
	return Read_Instruction(address);
}