diff options
author | 2017-12-16 14:24:24 -0600 | |
---|---|---|
committer | 2017-12-16 14:24:24 -0600 | |
commit | a3e4c79be61d389d8e7db87b94c10b25414c6711 (patch) | |
tree | bfdcae739fa95afd5eeced7f240c4170d9210117 /scripts/src/machine.lua | |
parent | 145bbb789cbfc2331f55b2fb3a39b6e1849546dd (diff) |
i386: x87 bug fixes and FERR support [Andrey Merkulov]
i8087: separate 8087 device [Carl]
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 21f3ff46301..12ea9dac6cd 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -1090,6 +1090,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/i8087.h,MACHINES["I8087"] = true +--------------------------------------------------- + +if (MACHINES["I8087"]~=null) then + files { + MAME_DIR .. "src/devices/machine/i8087.cpp", + MAME_DIR .. "src/devices/machine/i8087.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/i8155.h,MACHINES["I8155"] = true --------------------------------------------------- |