Skip to content

Commit

Permalink
n64: revert previous commit (add HLE RDRAM initialization) (#1391)
Browse files Browse the repository at this point in the history
This is actually still required as we still skip RDRAM initialization
anyway and proprietary IPL3 doesn't initialize the RAM size in this
case.
  • Loading branch information
rasky authored Feb 14, 2024
1 parent 5864382 commit d32b3ff
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ares/n64/ri/ri.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ auto RI::power(bool reset) -> void {
io.config = 0x40;
io.select = 0x14;
io.refresh = 0x0006'3634;

//store RDRAM size result into memory
rdram.ram.write<Word>(0x318, rdram.ram.size, "IPL3"); //CIC-NUS-6102
rdram.ram.write<Word>(0x3f0, rdram.ram.size, "IPL3"); //CIC-NUS-6105
}
}

Expand Down

0 comments on commit d32b3ff

Please sign in to comment.