mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-10 20:35:36 +00:00
target/mips: nanoMIPS: Remove an unused macro
Remove a macro that is never used. Backports commit be3a131a057ce30038a179d718d15be9383b1258 from qemu
This commit is contained in:
parent
afde79b8f9
commit
adecea4679
|
@ -18575,7 +18575,6 @@ enum {
|
|||
|
||||
#define NANOMIPS_EXTRACT_RD(op) ((op >> 7) & 0x7)
|
||||
#define NANOMIPS_EXTRACT_RS(op) ((op >> 4) & 0x7)
|
||||
#define NANOMIPS_EXTRACT_RS2(op) uMIPS_RS(op)
|
||||
#define NANOMIPS_EXTRACT_RS1(op) ((op >> 1) & 0x7)
|
||||
#define NANOMIPS_EXTRACT_RD5(op) ((op >> 5) & 0x1f)
|
||||
#define NANOMIPS_EXTRACT_RS5(op) (op & 0x1f)
|
||||
|
|
Loading…
Reference in a new issue