mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
32x: add some comments
This commit is contained in:
parent
a8fd6e3761
commit
65514d85d5
2 changed files with 20 additions and 8 deletions
|
@ -166,9 +166,9 @@ static const int reg_map_g2h[] = {
|
|||
4, 5, 6, 7,
|
||||
8, -1, -1, -1,
|
||||
-1, -1, -1, -1,
|
||||
-1, -1, -1, 9,
|
||||
-1, -1, -1, 10,
|
||||
-1, -1, -1, -1,
|
||||
-1, -1, -1, 9, // r12 .. sp
|
||||
-1, -1, -1, 10, // SHR_PC, SHR_PPC, SHR_PR, SHR_SR,
|
||||
-1, -1, -1, -1, // SHR_GBR, SHR_VBR, SHR_MACH, SHR_MACL,
|
||||
};
|
||||
|
||||
static temp_reg_t reg_temp[] = {
|
||||
|
@ -2986,7 +2986,7 @@ int sh2_execute(SH2 *sh2c, int cycles)
|
|||
sh2c->cycles_timeslice = cycles;
|
||||
|
||||
// cycles are kept in SHR_SR unused bits (upper 20)
|
||||
// bit19 contains T saved for delay slot
|
||||
// bit11 contains T saved for delay slot
|
||||
// others are usual SH2 flags
|
||||
sh2c->sr &= 0x3f3;
|
||||
sh2c->sr |= cycles << 12;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue