diff options
author | Oxore <oxore@protonmail.com> | 2023-06-10 13:26:58 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2023-06-10 14:50:12 +0300 |
commit | fccfe0e0b4848fa38403b515d77b6aba37570e54 (patch) | |
tree | f520df03c9d913ff9edfbd1ea626d9f93e92d625 /vdp.hpp | |
parent | a8beae02428f4c7762c3621b4a6d23a498b7d394 (diff) |
Impl IO class with tracing, add VDP addr regs tracing
Diffstat (limited to 'vdp.hpp')
-rw-r--r-- | vdp.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -47,7 +47,7 @@ public: kRegistersCount, ///< Keep it last }; - constexpr VDP(const uint32_t base_address_a = VDP_START): base_address(base_address_a) {} + constexpr VDP(const uint32_t base_address_a): base_address(base_address_a) {} uint32_t Read(uint32_t offset, enum bitness); void Write(uint32_t offset, enum bitness, uint32_t value); bool Scanline(); // Returns true if display disabled or vblank happened |