Working on the plugin interface

git-svn-id: svn://svn.cc65.org/cc65/trunk@1220 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2002-04-06 22:11:09 +00:00
parent 438c8499e6
commit 9abe1e62e7
9 changed files with 641 additions and 29 deletions

View File

@@ -65,6 +65,13 @@ unsigned MemReadZPWord (unsigned char Addr);
* overflow.
*/
void MemLoad (const char* Filename, unsigned Addr, unsigned Size);
/* Load the contents of the given file into the RAM at the given address.
* If Size is not zero, we will read exactly Size bytes from the file and
* consider it an error if this is not possible. The memory attributes
* for the range is set to initialized.
*/
void MemInit (void);
/* Initialize the memory subsystem */