mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
sh2 drc: RISC-V (RV64IM) code emitter, some work on MIPS64
This commit is contained in:
parent
aaea8e3ecd
commit
e7ee501075
21 changed files with 395 additions and 444 deletions
|
@ -134,9 +134,9 @@ enum { XT_UXTW=0x4, XT_UXTX=0x6, XT_LSL=0x7, XT_SXTW=0xc, XT_SXTX=0xe };
|
|||
#define A64_TST_REG(rn, rm, stype, simm) \
|
||||
A64_ANDS_REG(Z0, rn, rm, stype, simm)
|
||||
#define A64_MOV_REG(rd, rm, stype, simm) \
|
||||
A64_OR_REG(rd, Z0, rm, stype, simm);
|
||||
A64_OR_REG(rd, Z0, rm, stype, simm)
|
||||
#define A64_MVN_REG(rd, rm, stype, simm) \
|
||||
A64_ORN_REG(rd, Z0, rm, stype, simm);
|
||||
A64_ORN_REG(rd, Z0, rm, stype, simm)
|
||||
|
||||
// rd = rn OP (rm EXTEND simm)
|
||||
#define A64_ADD_XREG(rd, rn, rm, xtopt, simm) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue