diff options
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; }; |