]> git.sur5r.net Git - cc65/blob - libsrc/em/em_use.s
Move Atari-specific PIA reg vals to atari.h
[cc65] / libsrc / em / em_use.s
1 ;
2 ; Ullrich von Bassewitz, 2002-11-29
3 ;
4 ; void* __fastcall__ em_use (unsigned page);
5 ; /* Tell the driver that the memory window is associated with a given page.
6 ; ** This call is very similar to em_map. The difference is that the driver
7 ; ** does not necessarily transfer the current contents of the extended
8 ; ** memory into the returned window. If you're going to just write to the
9 ; ** window and the current contents of the window are invalid or no longer
10 ; ** use, this call may perform better than em_map.
11 ; */
12
13
14         .include        "em-kernel.inc"
15
16         _em_use         = emd_use               ; Use driver entry
17