mirror of
https://github.com/TomHarte/CLK.git
synced 2025-02-21 05:29:13 +00:00
Add decoding of lwa.
This commit is contained in:
parent
8a3c16a5bc
commit
8a1409184f
@ -330,6 +330,9 @@ Instruction Decoder::decode(uint32_t opcode) {
|
||||
case 0b111110'00'00000000'00000000'000000'01:
|
||||
if(is64bit(model_)) return Instruction(Operation::stdu, opcode);
|
||||
return Instruction(opcode);
|
||||
case 0b111010'00'00000000'00000000'000000'10:
|
||||
if(is64bit(model_)) return Instruction(Operation::lwa, opcode);
|
||||
return Instruction(opcode);
|
||||
}
|
||||
|
||||
// sc
|
||||
|
Loading…
x
Reference in New Issue
Block a user