diff options
Diffstat (limited to 'src/emu/cpu/m6502/m6502.h')
-rw-r--r-- | src/emu/cpu/m6502/m6502.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/emu/cpu/m6502/m6502.h b/src/emu/cpu/m6502/m6502.h index 783203e70fd..d5250fd7f52 100644 --- a/src/emu/cpu/m6502/m6502.h +++ b/src/emu/cpu/m6502/m6502.h @@ -72,9 +72,9 @@ enum CPUINFO_INT_M6510_PORT = CPUINFO_INT_CPU_SPECIFIC }; -extern void m6502_get_info(UINT32 state, cpuinfo *info); +extern CPU_GET_INFO( m6502 ); -extern unsigned m6502_dasm(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram); +extern CPU_DISASSEMBLE( m6502 ); /**************************************************************************** * The 6510 @@ -93,9 +93,9 @@ extern unsigned m6502_dasm(char *buffer, offs_t pc, const UINT8 *oprom, const UI #define M6510_IRQ_LINE M6502_IRQ_LINE -extern void m6510_get_info(UINT32 state, cpuinfo *info); +extern CPU_GET_INFO( m6510 ); -extern unsigned m6510_dasm(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram); +extern CPU_DISASSEMBLE( m6510 ); #endif @@ -113,7 +113,7 @@ extern unsigned m6510_dasm(char *buffer, offs_t pc, const UINT8 *oprom, const UI #define M6510T_IRQ_LINE M6502_IRQ_LINE -extern void m6510t_get_info(UINT32 state, cpuinfo *info); +extern CPU_GET_INFO( m6510t ); #endif @@ -131,7 +131,7 @@ extern void m6510t_get_info(UINT32 state, cpuinfo *info); #define M7501_IRQ_LINE M6502_IRQ_LINE -extern void m7501_get_info(UINT32 state, cpuinfo *info); +extern CPU_GET_INFO( m7501 ); #endif #if (HAS_M8502) @@ -148,7 +148,7 @@ extern void m7501_get_info(UINT32 state, cpuinfo *info); #define M8502_IRQ_LINE M6502_IRQ_LINE -extern void m8502_get_info(UINT32 state, cpuinfo *info); +extern CPU_GET_INFO( m8502 ); #endif @@ -169,7 +169,7 @@ extern void m8502_get_info(UINT32 state, cpuinfo *info); #define N2A03_IRQ_LINE M6502_IRQ_LINE -extern void n2a03_get_info(UINT32 state, cpuinfo *info); +extern CPU_GET_INFO( n2a03 ); #define N2A03_DEFAULTCLOCK (21477272.724 / 12) @@ -198,9 +198,9 @@ extern void n2a03_irq(void); #define M65C02_IRQ_LINE M6502_IRQ_LINE -extern void m65c02_get_info(UINT32 state, cpuinfo *info); +extern CPU_GET_INFO( m65c02 ); -extern unsigned m65c02_dasm(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram); +extern CPU_DISASSEMBLE( m65c02 ); #endif @@ -221,9 +221,9 @@ extern unsigned m65c02_dasm(char *buffer, offs_t pc, const UINT8 *oprom, const U #define M65SC02_IRQ_LINE M6502_IRQ_LINE -extern void m65sc02_get_info(UINT32 state, cpuinfo *info); +extern CPU_GET_INFO( m65sc02 ); -extern unsigned m65sc02_dasm(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram); +extern CPU_DISASSEMBLE( m65sc02 ); #endif /**************************************************************************** @@ -243,9 +243,9 @@ extern unsigned m65sc02_dasm(char *buffer, offs_t pc, const UINT8 *oprom, const #define DECO16_IRQ_LINE M6502_IRQ_LINE -extern void deco16_get_info(UINT32 state, cpuinfo *info); +extern CPU_GET_INFO( deco16 ); #endif -extern unsigned deco16_dasm(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram); +extern CPU_DISASSEMBLE( deco16 ); #endif /* __M6502_H__ */ |