From f125cc7018ed32b7f919ff71ea3c7d9d2e6565de Mon Sep 17 00:00:00 2001 From: Oxore Date: Fri, 30 Sep 2022 01:21:52 +0300 Subject: Begin implementing VDP --- bus.hpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'bus.hpp') 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; }; -- cgit v1.2.3