From 11476dced6c25bf8a9427125bda375c933abdaa9 Mon Sep 17 00:00:00 2001 From: cuz Date: Sun, 1 Dec 2002 23:39:00 +0000 Subject: [PATCH] Cosmetic changes git-svn-id: svn://svn.cc65.org/cc65/trunk@1687 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- include/em.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/em.h b/include/em.h index dbeb41945..a69c9598d 100644 --- a/include/em.h +++ b/include/em.h @@ -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. */ -- 2.39.5