1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-23 04:30:10 +00:00

Cosmetic changes

git-svn-id: svn://svn.cc65.org/cc65/trunk@1687 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2002-12-01 23:39:00 +00:00
parent 40c8cbdca5
commit 11476dced6

View File

@ -78,22 +78,22 @@ struct em_copy {
unsigned char __fastcall__ em_load_driver (const char* driver); unsigned char __fastcall__ em_load_driver (const char* driver);
/* Load an extended memory driver and return an error code */ /* Load an extended memory driver and return an error code */
unsigned char em_unload (void); unsigned char __fastcall__ em_unload (void);
/* Unload the currently loaded driver. */ /* Unload the currently loaded driver. */
unsigned em_pagecount (void); unsigned __fastcall__ em_pagecount (void);
/* Return the total number of 256 byte pages available in extended memory. */ /* Return the total number of 256 byte pages available in extended memory. */
void* __fastcall__ em_map (unsigned page); void* __fastcall__ em_map (unsigned page);
/* Unmap the current page from memory and map a new one. The function returns /* Unmap the current page from memory and map a new one. The function returns
* a pointer to the location of the page in memory. Note: Without calling * a pointer to the location of the page in memory. Note: Without calling
* em_commit, the old contents of the memory window may be lost! * em_commit, the old contents of the memory window may be lost!
*/ */
void __fastcall__ em_commit (void); void __fastcall__ em_commit (void);
/* Commit changes in the memory window to extended storage. If the contents /* Commit changes in the memory window to extended storage. If the contents
* of the memory window have been changed, these changes may be lost if * of the memory window have been changed, these changes may be lost if
* em_map, em_copyfrom or em_copyto are called without calling em_commit * em_map, em_copyfrom or em_copyto are called without calling em_commit
* first. Note: Not calling em_commit does not mean that the changes are * first. Note: Not calling em_commit does not mean that the changes are
* discarded, it does just mean that some drivers will discard the changes. * discarded, it does just mean that some drivers will discard the changes.
*/ */