arm: Use 64-bit addressing in a bunch of places.

This commit is contained in:
bunnei 2017-08-28 21:09:42 -04:00
parent 1c4f9e822c
commit 3411883fe3
9 changed files with 113 additions and 80 deletions

View file

@ -20,7 +20,7 @@ namespace HLE {
* HLE a function return from the current ARM11 userland process
* @param res Result to return
*/
static inline void FuncReturn(u32 res) {
static inline void FuncReturn(u64 res) {
Core::CPU().SetReg(0, res);
}