diff options
author | 2018-11-03 10:21:04 +0100 | |
---|---|---|
committer | 2018-11-03 10:25:11 +0100 | |
commit | 4f5f5c6c92236a8d1948293bf5129117333f4152 (patch) | |
tree | e627882fb4ff816959deb755231c7c52b2a6f25d /scripts/src/cpu.lua | |
parent | cbd7b12f60d615cf9c4a554dab7326d38557df42 (diff) |
i386.cpp: prepare to change hxx files into regular cpp files (nw)
-change order of include files at top of i386.cpp
-move some routines between i386.cpp and i386priv.h
-move part of x87ops.hxx into new file x87priv.h
.
Now you only have to rename the hxx files to cpp and add the following
at the top of each one
.
#include "emu.h"
#include "i386.h"
#include "i386priv.h"
#include "x87priv.h"
#include "cycles.h"
#include "debugger.h"
#include "debug/debugcpu.h"
#undef i386
Diffstat (limited to 'scripts/src/cpu.lua')
-rw-r--r-- | scripts/src/cpu.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/src/cpu.lua b/scripts/src/cpu.lua index b4b06d5330f..0a7282eb9b7 100644 --- a/scripts/src/cpu.lua +++ b/scripts/src/cpu.lua @@ -1072,6 +1072,7 @@ if (CPUS["I386"]~=null) then MAME_DIR .. "src/devices/cpu/i386/i486ops.hxx", MAME_DIR .. "src/devices/cpu/i386/pentops.hxx", MAME_DIR .. "src/devices/cpu/i386/x87ops.hxx", + MAME_DIR .. "src/devices/cpu/i386/x87priv.h", } end |