diff options
author | 2023-04-01 03:39:02 +0900 | |
---|---|---|
committer | 2023-04-01 05:39:02 +1100 | |
commit | ec6b3d2b5542b5b02339d066b35f7818bd5dbb57 (patch) | |
tree | 982b99f561867ebf05ad0f69b8750e75407a56f4 /scripts/src/machine.lua | |
parent | fbf158b7c8bdbaae9df171d807f40878aa5aefd7 (diff) |
namcos10: Refactored driver, and implemented MEM(M) and MEM(N) boards. (#11053)
* machine/smartmed.cpp, machine/nandflash.cpp: Separated NAND Flash from smartmed.
* sound/spu.cpp: Calculate tables based on clock speed.
* machine/intelfsh.cpp: Added Intel 28F640J5 device.
* namco/namcos10.cpp: Refactored driver, and implemented MEM(M) and MEM(N) boards.
* namco/namcos10.cpp: Fixed parenting of Mr. Driller 2, and renamed Kono e Tako.
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 d77e3f27042..35b191e8303 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -2655,6 +2655,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/nandflash.h,MACHINES["NANDFLASH"] = true +--------------------------------------------------- + +if (MACHINES["NANDFLASH"]~=null) then + files { + MAME_DIR .. "src/devices/machine/nandflash.cpp", + MAME_DIR .. "src/devices/machine/nandflash.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/nmc9306.h,MACHINES["NMC9306"] = true --------------------------------------------------- |