diff options
Diffstat (limited to 'src/emu/cpu/mcs51/mcs51.h')
-rw-r--r-- | src/emu/cpu/mcs51/mcs51.h | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/src/emu/cpu/mcs51/mcs51.h b/src/emu/cpu/mcs51/mcs51.h index 06ba1e98595..252bacc5750 100644 --- a/src/emu/cpu/mcs51/mcs51.h +++ b/src/emu/cpu/mcs51/mcs51.h @@ -94,30 +94,30 @@ extern void i8051_set_serial_tx_callback(void (*callback)(int data)); extern void i8051_set_serial_rx_callback(int (*callback)(void)); /* variants with no internal rom and 128 byte internal memory */ -void i8031_get_info(UINT32 state, cpuinfo *info); +CPU_GET_INFO( i8031 ); /* variants with no internal rom and 256 byte internal memory */ -void i8032_get_info(UINT32 state, cpuinfo *info); +CPU_GET_INFO( i8032 ); /* variants 4k internal rom and 128 byte internal memory */ -void i8051_get_info(UINT32 state, cpuinfo *info); -void i8751_get_info(UINT32 state, cpuinfo *info); +CPU_GET_INFO( i8051 ); +CPU_GET_INFO( i8751 ); /* variants 8k internal rom and 256 byte internal memory and more registers */ -void i8052_get_info(UINT32 state, cpuinfo *info); -void i8752_get_info(UINT32 state, cpuinfo *info); +CPU_GET_INFO( i8052 ); +CPU_GET_INFO( i8752 ); /* cmos variants */ -void i80c31_get_info(UINT32 state, cpuinfo *info); -void i80c51_get_info(UINT32 state, cpuinfo *info); -void i87c51_get_info(UINT32 state, cpuinfo *info); +CPU_GET_INFO( i80c31 ); +CPU_GET_INFO( i80c51 ); +CPU_GET_INFO( i87c51 ); -void i80c32_get_info(UINT32 state, cpuinfo *info); -void i80c52_get_info(UINT32 state, cpuinfo *info); -void i87c52_get_info(UINT32 state, cpuinfo *info); +CPU_GET_INFO( i80c32 ); +CPU_GET_INFO( i80c52 ); +CPU_GET_INFO( i87c52 ); /* 4k internal perom and 128 internal ram and 2 analog comparators */ -void at89c4051_get_info(UINT32 state, cpuinfo *info); +CPU_GET_INFO( at89c4051 ); /* * The DS5002FP has 2 16 bits data address buses (the byte-wide bus and the expanded bus). The exact memory position accessed depends on the @@ -135,17 +135,17 @@ void at89c4051_get_info(UINT32 state, cpuinfo *info); * Internal ram 128k and security features */ -void ds5002fp_get_info(UINT32 state, cpuinfo *info); +CPU_GET_INFO( ds5002fp ); /**************************************************************************** * Disassembler ****************************************************************************/ -offs_t i8051_dasm(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram); -offs_t i80c51_dasm(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram); -offs_t i8052_dasm(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram); -offs_t i80c52_dasm(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram); -offs_t ds5002fp_dasm(char *dst, offs_t pc, const UINT8 *oprom, const UINT8 *opram); +CPU_DISASSEMBLE( i8051 ); +CPU_DISASSEMBLE( i80c51 ); +CPU_DISASSEMBLE( i8052 ); +CPU_DISASSEMBLE( i80c52 ); +CPU_DISASSEMBLE( ds5002fp ); #endif /* __MCS51_H__ */ |