summaryrefslogtreecommitdiff
path: root/bus.hpp
diff options
context:
space:
mode:
authorOxore <oxore@protonmail.com>2022-09-30 01:21:52 +0300
committerOxore <oxore@protonmail.com>2022-09-30 01:21:52 +0300
commitf125cc7018ed32b7f919ff71ea3c7d9d2e6565de (patch)
tree0cb150b6e712b000fc334f07f426e01ed2f60cd7 /bus.hpp
parentdedd5c981ee95d9667f1f2e5d0b419f08bee3908 (diff)
Begin implementing VDP
Diffstat (limited to 'bus.hpp')
-rw-r--r--bus.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/bus.hpp b/bus.hpp
index 9745073..0492abd 100644
--- a/bus.hpp
+++ b/bus.hpp
@@ -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;
};