mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-06 07:38:05 -04:00
sh2 drc, fix sh2 reg enum usage
This commit is contained in:
parent
fde25b40fe
commit
7082729e06
2 changed files with 2 additions and 5 deletions
|
@ -9,7 +9,8 @@ typedef enum {
|
|||
SHR_R0 = 0, SHR_SP = 15,
|
||||
SHR_PC, SHR_PPC, SHR_PR, SHR_SR,
|
||||
SHR_GBR, SHR_VBR, SHR_MACH, SHR_MACL,
|
||||
SH2_REGS // register set size
|
||||
SH2_REGS, // register set size
|
||||
SHR_T = 29, SHR_MEM = 30, SHR_TMP = 31, // drc specific pseudo regs
|
||||
} sh2_reg_e;
|
||||
#define SHR_R(n) (SHR_R0+(n))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue