mirror of
https://github.com/mauiaaron/apple2.git
synced 2025-02-05 20:31:53 +00:00
29 lines
827 B
C
29 lines
827 B
C
|
/*
|
||
|
* Apple // emulator for Linux: Glue macros
|
||
|
*
|
||
|
* Copyright 1994 Alexander Jean-Claude Bottema
|
||
|
* Copyright 1995 Stephen Lee
|
||
|
* Copyright 1997, 1998 Aaron Culliney
|
||
|
* Copyright 1998, 1999, 2000 Michael Deutschmann
|
||
|
*
|
||
|
* This software package is subject to the GNU General Public License
|
||
|
* version 2 or later (your choice) as published by the Free Software
|
||
|
* Foundation.
|
||
|
*
|
||
|
* THERE ARE NO WARRANTIES WHATSOEVER.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#define GLUE_FIXED_READ(func,address)
|
||
|
#define GLUE_FIXED_WRITE(func,address)
|
||
|
#define GLUE_BANK_READ(func,pointer)
|
||
|
#define GLUE_BANK_WRITE(func,pointer)
|
||
|
#define GLUE_BANK_MAYBEWRITE(func,pointer)
|
||
|
|
||
|
#define GLUE_C_WRITE(func) \
|
||
|
void unglued_##func(int ea, unsigned char d) /* you complete definition */
|
||
|
|
||
|
#define GLUE_C_READ(func) \
|
||
|
unsigned char unglued_##func(int ea) /* you complete definition */
|
||
|
|