Removed unused variables

This commit is contained in:
Nathan Woods 2008-12-05 12:08:49 +00:00
parent 3c6eacc96f
commit 3125b5e60e
3 changed files with 0 additions and 3 deletions

View File

@ -499,7 +499,6 @@ static CPU_INIT( i386 )
static const int regs8[8] = {AL,CL,DL,BL,AH,CH,DH,BH};
static const int regs16[8] = {AX,CX,DX,BX,SP,BP,SI,DI};
static const int regs32[8] = {EAX,ECX,EDX,EBX,ESP,EBP,ESI,EDI};
static const char state_type[] = "I386";
build_cycle_table();

View File

@ -252,7 +252,6 @@ static CPU_DISASSEMBLE( i80286 )
static CPU_INIT( i80286 )
{
static const char type[] = "80286";
state_save_register_device_item_array(device, 0, I.regs.w);
state_save_register_device_item(device, 0, I.amask);
state_save_register_device_item(device, 0, I.pc);

View File

@ -94,7 +94,6 @@ static struct i80x86_timing timing;
/***************************************************************************/
static void i8086_state_register(const device_config *device)
{
static const char type[] = "I8086";
state_save_register_device_item_array(device, 0, I.regs.w);
state_save_register_device_item(device, 0, I.pc);
state_save_register_device_item(device, 0, I.prevpc);