From e243531dab5b349c4916bf41fa16a67917124ecf Mon Sep 17 00:00:00 2001 From: Irmen de Jong Date: Wed, 17 May 2023 00:49:47 +0200 Subject: [PATCH] upgrading --- docs/source/upgrading8.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/source/upgrading8.rst b/docs/source/upgrading8.rst index 2aa70f10e..65619b8d8 100644 --- a/docs/source/upgrading8.rst +++ b/docs/source/upgrading8.rst @@ -1,3 +1,4 @@ +======================== Upgrading from version 8 ======================== @@ -21,9 +22,9 @@ Parameters and return values passed via the carry status flag (@Pc) now need to (Previously also ``ubyte`` was allowed but as the value is just a single bit, this wasn't really correct) -``cbm`` contains kernal calls -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Instead of ``c64``, the CBM compatible kernal calls such as CHROUT, and variables, are now +Standard Commodore kernal calls moved to ``cbm`` +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Instead of ``c64``, the CBM compatible kernal calls (such as CHROUT) and a bunch of variables, are now located in the ``cbm`` module. You don't have to import this module as it is part of the syslib. * replace all references such as ``c64.CHROUT`` with the ``cbm`` module instead to fix those undefined symbol errors.