diff options
author | 2008-12-18 09:38:12 +0000 | |
---|---|---|
committer | 2008-12-18 09:38:12 +0000 | |
commit | aa7e2482e287fc9e48b27e17e8d5b458bf6c0a04 (patch) | |
tree | ab6ebf7f2625b246d0dfe3e045695ba8131f3e03 /src/emu/cpu/i86/i286.c | |
parent | 785b6a50c63d106f13f550f006952370bf3b410a (diff) |
CPU header cleanups....
i86/i286/i386/nec/v30mz:
* renamed i86.h -> i86priv.h
* renamed i86intrf.h -> i86.h
* consolidated i88intrf.h, i186intf.h, i188intf.h, etc into i86.h
m6805:
* moved memory read/write macros out of public header
m37710:
* moved memory read/write macros out of public header
spc700:
* moved many structs/functions/macros out of public header
tms32010:
* moved memory read/write macros out of public header
sm8500:
* pointer-ified the core (apparently never had get/set context!)
g65816:
* moved memory read/write macros out of public header
pic16c5x:
* moved memory read/write macros out of public header
t11:
* moved memory read/write macros out of public header
Diffstat (limited to 'src/emu/cpu/i86/i286.c')
-rw-r--r-- | src/emu/cpu/i86/i286.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/i86/i286.c b/src/emu/cpu/i86/i286.c index 83f7bce399d..e02b0afac49 100644 --- a/src/emu/cpu/i86/i286.c +++ b/src/emu/cpu/i86/i286.c @@ -16,8 +16,8 @@ #define INPUT_LINE_A20 1 -#include "i86.h" -#include "i286intf.h" +#include "i86priv.h" +#include "i286.h" #include "i86time.c" |