]> git.sur5r.net Git - cc65/blob - libsrc/em/em_mapclean.s
Remove em_load
[cc65] / libsrc / em / em_mapclean.s
1 ;
2 ; Ullrich von Bassewitz, 2002-11-29
3 ;
4 ; void* __fastcall__ em_mapclean (unsigned page);
5 ; /* Unmap the current page from memory and map a new one. The function returns
6 ;  * a pointer to the location of the page in memory. This function differs from
7 ;  * em_map_page() in that it will discard the contents of the currently mapped
8 ;  * page, assuming that the page has not been modified or that the modifications
9 ;  * are no longer needed, if this leads to better performance. NOTE: This does
10 ;  * NOT mean that the contents of currently mapped page are always discarded!
11 ;  */
12
13
14         .include        "em-kernel.inc"
15
16         _em_mapclean    = emd_mapclean         ; Use driver entry
17