From 67571d4f5f79369409c472904c066d3d41389040 Mon Sep 17 00:00:00 2001 From: Greg King Date: Mon, 26 Aug 2013 22:02:00 -0400 Subject: [PATCH] Changed some CPU memory-mapped register definitions from expression mode into label mode. --- asminc/cbm510.inc | 6 +++--- asminc/cbm610.inc | 9 +++++---- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/asminc/cbm510.inc b/asminc/cbm510.inc index f031a1e35..dfeee1d4e 100644 --- a/asminc/cbm510.inc +++ b/asminc/cbm510.inc @@ -4,14 +4,14 @@ ; Taken from a kernal disassembly done by myself in 2000/2001. ; ; 2001-09-13, Ullrich von Bassewitz -; 2013-08-23, Greg King +; 2013-08-26, Greg King ;----------------------------------------------------------------------------- ; Zeropage stuff -ExecReg = $00 -IndReg = $01 +ExecReg := $00 ; Controls execution memory bank +IndReg := $01 ; Controls indirect indexed load-store bank TXTPTR := $85 ; Far pointer into BASIC source code diff --git a/asminc/cbm610.inc b/asminc/cbm610.inc index 10d194ea7..f442f5da8 100644 --- a/asminc/cbm610.inc +++ b/asminc/cbm610.inc @@ -1,16 +1,17 @@ ; -; Zeropage and I/O definitions for the CBM 610 +; Zero page variables and I/O definitions for the CBM 610 ; ; Taken from a kernal disassembly done by myself in 1987. ; -; Ullrich von Bassewitz, 28.09.1998 +; 1998-09-28, Ullrich von Bassewitz +; 2013-08-26, Greg King ; --------------------------------------------------------------------------- ; Zeropage stuff -ExecReg := $00 -IndReg := $01 +ExecReg := $00 ; Controls execution memory bank +IndReg := $01 ; Controls indirect indexed load-store bank TXTPTR := $85 ; Far pointer into BASIC source code -- 2.39.5