mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-24 21:55:46 +00:00
arm: Use 64-bit addressing in a bunch of places.
This commit is contained in:
parent
d13377a2a9
commit
7f1ce2cf68
9 changed files with 113 additions and 80 deletions
|
@ -47,8 +47,8 @@ typedef double f64; ///< 64-bit floating point
|
|||
|
||||
// TODO: It would be nice to eventually replace these with strong types that prevent accidental
|
||||
// conversion between each other.
|
||||
typedef u32 VAddr; ///< Represents a pointer in the userspace virtual address space.
|
||||
typedef u32 PAddr; ///< Represents a pointer in the ARM11 physical address space.
|
||||
typedef u64 VAddr; ///< Represents a pointer in the userspace virtual address space.
|
||||
typedef u64 PAddr; ///< Represents a pointer in the ARM11 physical address space.
|
||||
|
||||
// An inheritable class to disallow the copy constructor and operator= functions
|
||||
class NonCopyable {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue