diff options
author | Oxore <oxore@protonmail.com> | 2022-09-30 01:21:52 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2022-09-30 01:21:52 +0300 |
commit | f125cc7018ed32b7f919ff71ea3c7d9d2e6565de (patch) | |
tree | 0cb150b6e712b000fc334f07f426e01ed2f60cd7 /bus.hpp | |
parent | dedd5c981ee95d9667f1f2e5d0b419f08bee3908 (diff) |
Begin implementing VDP
Diffstat (limited to 'bus.hpp')
-rw-r--r-- | bus.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -18,6 +18,12 @@ #define VDP_START (0xC00000) #define VDP_SIZE (0x20) +enum bitness { + BITNESS_8 = 1, + BITNESS_16 = 2, + BITNESS_32 = 4, +}; + struct Breakpoint { uint32_t offset, length; }; |