]> git.sur5r.net Git - cc65/commitdiff
Cosmetic changes
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 1 Dec 2002 23:39:00 +0000 (23:39 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 1 Dec 2002 23:39:00 +0000 (23:39 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@1687 b7a2c559-68d2-44c3-8de9-860c34a00d81

include/em.h

index dbeb419458c69a044aa56a9b2530a413ee70b792..a69c9598dd2502c18e9573abb94a4e7120519c62 100644 (file)
@@ -78,22 +78,22 @@ struct em_copy {
 unsigned char __fastcall__ em_load_driver (const char* driver);
 /* 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. */
 
-unsigned em_pagecount (void);
+unsigned __fastcall__ em_pagecount (void);
 /* Return the total number of 256 byte pages available in extended memory. */
 
 void* __fastcall__ em_map (unsigned page);
 /* 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!
  */
 
 void __fastcall__ em_commit (void);
 /* 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
- * 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
  * discarded, it does just mean that some drivers will discard the changes.
  */