summaryrefslogtreecommitdiff
path: root/vdp.hpp
diff options
context:
space:
mode:
authorOxore <oxore@protonmail.com>2023-05-07 13:22:46 +0300
committerOxore <oxore@protonmail.com>2023-05-07 13:22:46 +0300
commitf475974aeee25082d6384f69212a9d237d394477 (patch)
treeaa8e350f6c69fc8661ac2210fb1b4e2ef5a22342 /vdp.hpp
parentbce8c2f19a564f17d41fa0a3fb935b0181cad147 (diff)
Impl vertical overall scrolling
Diffstat (limited to 'vdp.hpp')
-rw-r--r--vdp.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/vdp.hpp b/vdp.hpp
index 2a99ebc..e811422 100644
--- a/vdp.hpp
+++ b/vdp.hpp
@@ -76,9 +76,10 @@ class VDP {
uint16_t plane_addr,
uint16_t hscroll_table_addr,
size_t plane_index,
- size_t hcell_count);
- void renderScrollALine(size_t line_index, size_t hcell_count);
- void renderScrollBLine(size_t line_index, size_t hcell_count);
+ size_t hcell_count,
+ size_t vcell_count);
+ void renderScrollALine(size_t line_index, size_t hcell_count, size_t vcell_count);
+ void renderScrollBLine(size_t line_index, size_t hcell_count, size_t vcell_count);
void writeData(uint8_t address_mode, uint16_t address, uint16_t value);
void writeControl(uint16_t value);
uint16_t readData(uint8_t address_mode, uint16_t address);