summaryrefslogtreecommitdiff
path: root/emulators/adamem/files/patch-Z80IO.h
blob: f5cd2495b36990e2ef9c70e2b3c23d57abe887a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Index: Z80IO.h
@@ -11,7 +11,6 @@
 /****************************************************************************/
 
 #define INLINE_OP                     /* Inline Z80_RDOP()                  */
-#define INLINE_MEM                    /* Inline Z80_RDMEM() and Z80_WRMEM() */
 
 #ifdef __GNUC__
 #define FASTCALL        __attribute__ ((regparm(3)))
@@ -36,11 +35,11 @@
  /***************************************************************************/
  /* Read a byte from given memory location                                  */
  /***************************************************************************/
- unsigned Z80_RDMEM(dword a) FASTCALL;
+ unsigned Z80_RDMEM(dword a);
  /***************************************************************************/
  /* Write a byte to given memory location                                   */
  /***************************************************************************/
- void Z80_WRMEM(dword a,byte v) FASTCALL;
+ void Z80_WRMEM(dword a,byte v);
 #else
  extern byte *AddrTabl[256];
  extern byte *WriteAddrTabl[256];