Fixed some stupid errors.

This commit is contained in:
OBattler
2016-08-10 04:46:16 +02:00
parent 723b685327
commit 246ef0f785
2 changed files with 3 additions and 3 deletions

View File

@@ -391,7 +391,7 @@ static void fetcheal()
easeg=*mod1seg[rm];
eaaddr&=0xFFFF;
}
last_ea = eaaddr;
cpu_state.last_ea = eaaddr;
}
static inline uint8_t geteab()

View File

@@ -366,7 +366,7 @@ static int opXLAT_a16(uint32_t fetchdat)
{
uint32_t addr = (BX + AL)&0xFFFF;
uint8_t temp;
last_ea = addr;
cpu_state.last_ea = addr;
temp = readmemb(ea_seg->base, addr);
if (abrt) return 1;
AL = temp;
@@ -377,7 +377,7 @@ static int opXLAT_a32(uint32_t fetchdat)
{
uint32_t addr = EBX + AL;
uint8_t temp;
last_ea = addr;
cpu_state.last_ea = addr;
temp = readmemb(ea_seg->base, addr);
if (abrt) return 1;
AL = temp;