From 802424316c38e605164bb5b4e41226069db5e0ea Mon Sep 17 00:00:00 2001 From: zbyti Date: Mon, 28 Sep 2020 22:54:58 +0200 Subject: [PATCH] ANTIC Display List BASIC fix --- include/a8_antic.mfk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/a8_antic.mfk b/include/a8_antic.mfk index 0bbf98f5..d0442868 100644 --- a/include/a8_antic.mfk +++ b/include/a8_antic.mfk @@ -8,8 +8,8 @@ // THE DISPLAY LIST CANNOT CROSS A 1K BYTE MEMORY BOUNDARY UNLESS A JUMP INSTRUCTION IS USED! const byte LMS = $40 // Load memory scan 10-bit counter, $fff boundary. const byte DLI = $80 // Display list interrupt - Interrupt CPU at beginning of last scan line. -const byte HSCROL = $10 // Enable vertical scrolling. -const byte VSCROL = $20 // Enable horizontal scrolling. +const byte HSCROL = $10 // Enable horizontal scrolling. +const byte VSCROL = $20 // Enable vertical scrolling. const byte JMP = 1 // Jump command - followed by two bytes indicating the new instruction pointer for the display list. const byte JVB = $41 // Jump and wait for Vertical Blank - suspends the display list until vertical blank and then jumps.