]> git.sur5r.net Git - cc65/commitdiff
Added peekxsys functions for the 6509 machines
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 14 Sep 2001 08:41:16 +0000 (08:41 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Fri, 14 Sep 2001 08:41:16 +0000 (08:41 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@917 b7a2c559-68d2-44c3-8de9-860c34a00d81

include/cbm510.h
include/cbm610.h

index 295d6e679390b5e0e7d11250cda2b48ef6d1645b..8a4286ee29c9a3f132a7ae1103ba183b6863b4f7 100644 (file)
@@ -82,7 +82,9 @@
 
 
 
-/* Special routines to write bytes and words in the system bank */
+/* Special routines to read/write bytes and words in the system bank */
+unsigned char __fastcall__ peekbsys (unsigned addr);
+unsigned __fastcall__ peekwsys (unsigned addr);
 void __fastcall__ pokebsys (unsigned addr, unsigned char val);
 void __fastcall__ pokewsys (unsigned addr, unsigned val);
 
index 2ca6f7af8065a6a02c32dfb01012e98b21119100..865d1452f7c6e61ac5f13448f19721d04eb04b42 100644 (file)
@@ -69,6 +69,8 @@
 
 
 /* Special routines to write bytes and words in the system bank */
+unsigned char __fastcall__ peekbsys (unsigned addr);
+unsigned __fastcall__ peekwsys (unsigned addr);
 void __fastcall__ pokebsys (unsigned addr, unsigned char val);
 void __fastcall__ pokewsys (unsigned addr, unsigned val);