diff options
author | 2022-06-29 15:14:17 +0200 | |
---|---|---|
committer | 2022-06-29 15:14:17 +0200 | |
commit | 7a434982fb3db6251c38ec81268251ecd61da64d (patch) | |
tree | 4ee302de10445ae330c08a01e60c962c29afd03b /scripts/src/machine.lua | |
parent | 3119967058bae4562fcddb01f91179a4625e0c1b (diff) |
source org: move kr1601rr1 earom chip device to devices/machine
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 52 |
1 files changed, 32 insertions, 20 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 3ba68547c83..71e446ec7ca 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -1866,37 +1866,25 @@ end --------------------------------------------------- -- ---@src/devices/machine/m950x0.h,MACHINES["M950X0"] = true ---------------------------------------------------- - -if (MACHINES["M950X0"]~=null) then - files { - MAME_DIR .. "src/devices/machine/m950x0.cpp", - MAME_DIR .. "src/devices/machine/m950x0.h", - } -end - ---------------------------------------------------- --- ---@src/devices/machine/mm5740.h,MACHINES["MM5740"] = true +--@src/devices/machine/kb3600.h,MACHINES["KB3600"] = true --------------------------------------------------- -if (MACHINES["MM5740"]~=null) then +if (MACHINES["KB3600"]~=null) then files { - MAME_DIR .. "src/devices/machine/mm5740.cpp", - MAME_DIR .. "src/devices/machine/mm5740.h", + MAME_DIR .. "src/devices/machine/kb3600.cpp", + MAME_DIR .. "src/devices/machine/kb3600.h", } end --------------------------------------------------- -- ---@src/devices/machine/kb3600.h,MACHINES["KB3600"] = true +--@src/devices/machine/kr1601rr1.h,MACHINES["KR1601RR1"] = true --------------------------------------------------- -if (MACHINES["KB3600"]~=null) then +if (MACHINES["KR1601RR1"]~=null) then files { - MAME_DIR .. "src/devices/machine/kb3600.cpp", - MAME_DIR .. "src/devices/machine/kb3600.h", + MAME_DIR .. "src/devices/machine/kr1601rr1.cpp", + MAME_DIR .. "src/devices/machine/kr1601rr1.h", } end @@ -2096,6 +2084,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/m950x0.h,MACHINES["M950X0"] = true +--------------------------------------------------- + +if (MACHINES["M950X0"]~=null) then + files { + MAME_DIR .. "src/devices/machine/m950x0.cpp", + MAME_DIR .. "src/devices/machine/m950x0.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/mb14241.h,MACHINES["MB14241"] = true --------------------------------------------------- @@ -2412,6 +2412,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/mm5740.h,MACHINES["MM5740"] = true +--------------------------------------------------- + +if (MACHINES["MM5740"]~=null) then + files { + MAME_DIR .. "src/devices/machine/mm5740.cpp", + MAME_DIR .. "src/devices/machine/mm5740.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/mm58274c.h,MACHINES["MM58274C"] = true --------------------------------------------------- |