Memory: Use a table based lookup scheme to read from memory regions
This commit is contained in:
parent
52158c1b8d
commit
dd4430609a
5 changed files with 167 additions and 121 deletions
|
@ -8,6 +8,10 @@
|
|||
|
||||
namespace Memory {
|
||||
|
||||
/**
|
||||
* Page size used by the ARM architecture. This is the smallest granularity with which memory can
|
||||
* be mapped.
|
||||
*/
|
||||
const u32 PAGE_SIZE = 0x1000;
|
||||
|
||||
/// Physical memory regions as seen from the ARM11
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue