From: Olli Savia Date: Sun, 1 Jul 2018 06:56:37 +0000 (+0300) Subject: Use common include file cbm_kernal.inc X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=820c0efcb39b70946b3fca995f81e7b87dbd953d;p=cc65 Use common include file cbm_kernal.inc --- diff --git a/libsrc/pet/kernal.s b/libsrc/pet/kernal.s index 1a9dd6f67..ba66c4653 100644 --- a/libsrc/pet/kernal.s +++ b/libsrc/pet/kernal.s @@ -4,25 +4,11 @@ ; PET kernal functions ; + .include "cbm_kernal.inc" + .export CLRCH .export BASIN .export STOP .export GETIN .export CLALL .export UDTIM - - - - - - -;----------------------------------------------------------------------------- -; Functions that are available in the kernal jump table - -CLRCH = $FFCC -BASIN = $FFCF -STOP = $FFE1 -GETIN = $FFE4 -CLALL = $FFE7 -UDTIM = $FFEA -