mirror of
https://github.com/cc65/cc65.git
synced 2025-01-21 15:32:41 +00:00
Added peekxsys functions for the 6509 machines
git-svn-id: svn://svn.cc65.org/cc65/trunk@917 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
cce379324d
commit
0dd35700c9
@ -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);
|
||||
|
||||
|
@ -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);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user