diff options
author | 2008-12-17 19:15:14 +0000 | |
---|---|---|
committer | 2008-12-17 19:15:14 +0000 | |
commit | d9fbf0dba5d2e98f1fe0a2f7107ac17db1146e03 (patch) | |
tree | b87b58333ad11f35f8a9a36af0d28223c9e2ae5d | |
parent | 09f7e1e8d159b75ac174b52e64c8b79370bc2ffb (diff) |
Removed unneeded segment base changes from the 80286 core.
-rw-r--r-- | src/emu/cpu/i86/i286.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/emu/cpu/i86/i286.c b/src/emu/cpu/i86/i286.c index a3fb8128cf8..83f7bce399d 100644 --- a/src/emu/cpu/i86/i286.c +++ b/src/emu/cpu/i86/i286.c @@ -194,11 +194,6 @@ static CPU_EXECUTE( i80286 ) { i80286_state *cpustate = device->token; - cpustate->base[CS] = SegBase(CS); - cpustate->base[DS] = SegBase(DS); - cpustate->base[ES] = SegBase(ES); - cpustate->base[SS] = SegBase(SS); - /* copy over the cycle counts if they're not correct */ if (timing.id != 80286) timing = i80286_cycles; |