source org: move kr1601rr1 earom chip device to devices/machine

This commit is contained in:
hap 2022-06-29 15:14:17 +02:00
parent 3119967058
commit 7a434982fb
7 changed files with 40 additions and 25 deletions

View File

@ -1864,30 +1864,6 @@ if (MACHINES["K056230"]~=null) then
}
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
---------------------------------------------------
if (MACHINES["MM5740"]~=null) then
files {
MAME_DIR .. "src/devices/machine/mm5740.cpp",
MAME_DIR .. "src/devices/machine/mm5740.h",
}
end
---------------------------------------------------
--
--@src/devices/machine/kb3600.h,MACHINES["KB3600"] = true
@ -1900,6 +1876,18 @@ if (MACHINES["KB3600"]~=null) then
}
end
---------------------------------------------------
--
--@src/devices/machine/kr1601rr1.h,MACHINES["KR1601RR1"] = true
---------------------------------------------------
if (MACHINES["KR1601RR1"]~=null) then
files {
MAME_DIR .. "src/devices/machine/kr1601rr1.cpp",
MAME_DIR .. "src/devices/machine/kr1601rr1.h",
}
end
---------------------------------------------------
--
--@src/devices/machine/kr2376.h,MACHINES["KR2376"] = true
@ -2094,6 +2082,18 @@ if (MACHINES["M6M80011AP"]~=null) then
}
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
@ -2410,6 +2410,18 @@ if (MACHINES["MM5307"]~=null) then
}
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

View File

@ -630,6 +630,7 @@ MACHINES["K054321"] = true
MACHINES["K056230"] = true
MACHINES["KB3600"] = true
MACHINES["KBDC8042"] = true
MACHINES["KR1601RR1"] = true
MACHINES["KR2376"] = true
MACHINES["LATCH8"] = true
MACHINES["LC89510"] = true

View File

@ -1,4 +1,5 @@
# **src/mame/cccp** #
СССР - Сою́з Сове́тских Социалисти́ческих Респу́блик (USSR)
Driver files for hardware made in the Soviet Union. With some overlap for newer ones that are still on typical Soviet-era hardware.

View File

@ -1,4 +1,5 @@
# **src/mame/ddr** #
DDR - Deutsche Demokratische Republik
Driver files for hardware made in East Germany, before the German unification.

View File

@ -31,7 +31,6 @@
****************************************************************************/
#include "emu.h"
#include "kr1601rr1.h"
#include "vt100_kbd.h"
@ -42,6 +41,7 @@
#include "machine/i8214.h"
#include "machine/i8251.h"
#include "machine/i8257.h"
#include "machine/kr1601rr1.h"
#include "machine/pit8253.h"
#include "machine/ripple_counter.h"
#include "video/i8275.h"