Added Intel 8021/8022 CPU types.

This commit is contained in:
Curt Coder 2010-02-12 09:46:22 +00:00
parent 86ad7a0f2b
commit 60d8b99681
2 changed files with 6 additions and 0 deletions

View File

@ -1515,6 +1515,8 @@ static void mcs48_generic_get_info(const device_config *devconfig, running_devic
/* Official Intel MCS-48 parts */
CPU_GET_INFO( i8021 ) { mcs48_generic_get_info(devconfig, device, state, info, MCS48_FEATURE, 1024, 64, "I8021"); }
CPU_GET_INFO( i8022 ) { mcs48_generic_get_info(devconfig, device, state, info, MCS48_FEATURE, 2048, 128, "I8022"); }
CPU_GET_INFO( i8035 ) { mcs48_generic_get_info(devconfig, device, state, info, MCS48_FEATURE, 0, 64, "I8035"); }
CPU_GET_INFO( i8048 ) { mcs48_generic_get_info(devconfig, device, state, info, MCS48_FEATURE, 1024, 64, "I8048"); }
CPU_GET_INFO( i8648 ) { mcs48_generic_get_info(devconfig, device, state, info, MCS48_FEATURE, 1024, 64, "I8648"); }

View File

@ -87,6 +87,8 @@ enum
MACROS
***************************************************************************/
#define CPU_I8021 CPU_GET_INFO_NAME( i8021 )
#define CPU_I8022 CPU_GET_INFO_NAME( i8022 )
#define CPU_I8035 CPU_GET_INFO_NAME( i8035 )
#define CPU_I8048 CPU_GET_INFO_NAME( i8048 )
#define CPU_I8648 CPU_GET_INFO_NAME( i8648 )
@ -114,6 +116,8 @@ enum
***************************************************************************/
/* Official Intel MCS-48 parts */
CPU_GET_INFO( i8021 ); /* 1k internal ROM, 64 bytes internal RAM */
CPU_GET_INFO( i8022 ); /* 2k internal ROM, 128 bytes internal RAM */
CPU_GET_INFO( i8035 ); /* external ROM, 64 bytes internal RAM */
CPU_GET_INFO( i8048 ); /* 1k internal ROM, 64 bytes internal RAM */
CPU_GET_INFO( i8648 ); /* 1k internal OTP ROM, 64 bytes internal RAM */