diff options
author | Martmists <martmists@gmail.com> | 2020-04-22 13:57:09 +0200 |
---|---|---|
committer | Martmists <martmists@gmail.com> | 2020-04-22 13:57:09 +0200 |
commit | 9b3107c478c9f39c17ef4171c9c5330adcb1385a (patch) | |
tree | e63d60215b5ba9405d7aeb3322873d26c5f03cc1 /include/nitro/mmap.h | |
parent | dcdf58739922de3b3bbc828f46e36b83f53c52a0 (diff) | |
parent | 5ee605688aaea7fe6b4573dc2ce5ce24cd671855 (diff) |
Merge branch 'master' into os_lib
Diffstat (limited to 'include/nitro/mmap.h')
-rw-r--r-- | include/nitro/mmap.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/nitro/mmap.h b/include/nitro/mmap.h new file mode 100644 index 00000000..4c781d5f --- /dev/null +++ b/include/nitro/mmap.h @@ -0,0 +1,12 @@ +#ifndef NITRO_MMAP_H +#define NITRO_MMAP_H + +#define HW_MAIN_MEM 0x02000000 +#define HW_MAIN_MEM_SIZE 0x00400000 +#define HW_MAIN_MEM_EX_SIZE 0x00800000 + +#define HW_ARENA_INFO_BUF (HW_MAIN_MEM + 0x007ffda0) // Arena data structure +#define HW_ROM_HEADER_BUF (HW_MAIN_MEM + 0x007ffe00) // ROM registration area data buffer + + +#endif
\ No newline at end of file |