mirror of
https://github.com/holub/mame
synced 2025-07-07 10:58:41 +03:00
mode devices to proper library (nw)
This commit is contained in:
parent
1c726824f2
commit
9a3b5d9a75
@ -209,61 +209,11 @@ files {
|
||||
MAME_DIR .. "src/emu/debug/textbuf.h",
|
||||
MAME_DIR .. "src/emu/sound/filter.cpp",
|
||||
MAME_DIR .. "src/emu/sound/filter.h",
|
||||
MAME_DIR .. "src/devices/sound/flt_vol.cpp",
|
||||
MAME_DIR .. "src/devices/sound/flt_vol.h",
|
||||
MAME_DIR .. "src/devices/sound/flt_rc.cpp",
|
||||
MAME_DIR .. "src/devices/sound/flt_rc.h",
|
||||
MAME_DIR .. "src/emu/sound/wavwrite.cpp",
|
||||
MAME_DIR .. "src/emu/sound/wavwrite.h",
|
||||
MAME_DIR .. "src/devices/sound/samples.cpp",
|
||||
MAME_DIR .. "src/devices/sound/samples.h",
|
||||
MAME_DIR .. "src/emu/drivers/empty.cpp",
|
||||
MAME_DIR .. "src/emu/drivers/testcpu.cpp",
|
||||
MAME_DIR .. "src/emu/drivers/xtal.h",
|
||||
MAME_DIR .. "src/devices/machine/bcreader.cpp",
|
||||
MAME_DIR .. "src/devices/machine/bcreader.h",
|
||||
MAME_DIR .. "src/devices/machine/buffer.cpp",
|
||||
MAME_DIR .. "src/devices/machine/buffer.h",
|
||||
MAME_DIR .. "src/devices/machine/clock.cpp",
|
||||
MAME_DIR .. "src/devices/machine/clock.h",
|
||||
MAME_DIR .. "src/devices/machine/keyboard.cpp",
|
||||
MAME_DIR .. "src/devices/machine/keyboard.h",
|
||||
MAME_DIR .. "src/devices/machine/laserdsc.cpp",
|
||||
MAME_DIR .. "src/devices/machine/laserdsc.h",
|
||||
MAME_DIR .. "src/devices/machine/latch.cpp",
|
||||
MAME_DIR .. "src/devices/machine/latch.h",
|
||||
MAME_DIR .. "src/devices/machine/nvram.cpp",
|
||||
MAME_DIR .. "src/devices/machine/nvram.h",
|
||||
MAME_DIR .. "src/devices/machine/ram.cpp",
|
||||
MAME_DIR .. "src/devices/machine/ram.h",
|
||||
MAME_DIR .. "src/devices/machine/legscsi.cpp",
|
||||
MAME_DIR .. "src/devices/machine/legscsi.h",
|
||||
MAME_DIR .. "src/devices/machine/terminal.cpp",
|
||||
MAME_DIR .. "src/devices/machine/terminal.h",
|
||||
MAME_DIR .. "src/devices/imagedev/bitbngr.cpp",
|
||||
MAME_DIR .. "src/devices/imagedev/bitbngr.h",
|
||||
MAME_DIR .. "src/devices/imagedev/cassette.cpp",
|
||||
MAME_DIR .. "src/devices/imagedev/cassette.h",
|
||||
MAME_DIR .. "src/devices/imagedev/chd_cd.cpp",
|
||||
MAME_DIR .. "src/devices/imagedev/chd_cd.h",
|
||||
MAME_DIR .. "src/devices/imagedev/diablo.cpp",
|
||||
MAME_DIR .. "src/devices/imagedev/diablo.h",
|
||||
MAME_DIR .. "src/devices/imagedev/flopdrv.cpp",
|
||||
MAME_DIR .. "src/devices/imagedev/flopdrv.h",
|
||||
MAME_DIR .. "src/devices/imagedev/floppy.cpp",
|
||||
MAME_DIR .. "src/devices/imagedev/floppy.h",
|
||||
MAME_DIR .. "src/devices/imagedev/harddriv.cpp",
|
||||
MAME_DIR .. "src/devices/imagedev/harddriv.h",
|
||||
MAME_DIR .. "src/devices/imagedev/mfmhd.cpp",
|
||||
MAME_DIR .. "src/devices/imagedev/mfmhd.h",
|
||||
MAME_DIR .. "src/devices/imagedev/midiin.cpp",
|
||||
MAME_DIR .. "src/devices/imagedev/midiin.h",
|
||||
MAME_DIR .. "src/devices/imagedev/midiout.cpp",
|
||||
MAME_DIR .. "src/devices/imagedev/midiout.h",
|
||||
MAME_DIR .. "src/devices/imagedev/printer.cpp",
|
||||
MAME_DIR .. "src/devices/imagedev/printer.h",
|
||||
MAME_DIR .. "src/devices/imagedev/snapquik.cpp",
|
||||
MAME_DIR .. "src/devices/imagedev/snapquik.h",
|
||||
MAME_DIR .. "src/emu/video/generic.cpp",
|
||||
MAME_DIR .. "src/emu/video/generic.h",
|
||||
MAME_DIR .. "src/emu/video/resnet.cpp",
|
||||
@ -277,7 +227,6 @@ files {
|
||||
MAME_DIR .. "src/emu/video/rgbvmx.h",
|
||||
MAME_DIR .. "src/emu/video/vector.cpp",
|
||||
MAME_DIR .. "src/emu/video/vector.h",
|
||||
MAME_DIR .. "src/devices/video/poly.h",
|
||||
}
|
||||
|
||||
dependency {
|
||||
|
@ -9,7 +9,54 @@
|
||||
--
|
||||
----------------------------------------------------------------------------
|
||||
|
||||
|
||||
files {
|
||||
MAME_DIR .. "src/devices/machine/bcreader.cpp",
|
||||
MAME_DIR .. "src/devices/machine/bcreader.h",
|
||||
MAME_DIR .. "src/devices/machine/buffer.cpp",
|
||||
MAME_DIR .. "src/devices/machine/buffer.h",
|
||||
MAME_DIR .. "src/devices/machine/clock.cpp",
|
||||
MAME_DIR .. "src/devices/machine/clock.h",
|
||||
MAME_DIR .. "src/devices/machine/keyboard.cpp",
|
||||
MAME_DIR .. "src/devices/machine/keyboard.h",
|
||||
MAME_DIR .. "src/devices/machine/laserdsc.cpp",
|
||||
MAME_DIR .. "src/devices/machine/laserdsc.h",
|
||||
MAME_DIR .. "src/devices/machine/latch.cpp",
|
||||
MAME_DIR .. "src/devices/machine/latch.h",
|
||||
MAME_DIR .. "src/devices/machine/nvram.cpp",
|
||||
MAME_DIR .. "src/devices/machine/nvram.h",
|
||||
MAME_DIR .. "src/devices/machine/ram.cpp",
|
||||
MAME_DIR .. "src/devices/machine/ram.h",
|
||||
MAME_DIR .. "src/devices/machine/legscsi.cpp",
|
||||
MAME_DIR .. "src/devices/machine/legscsi.h",
|
||||
MAME_DIR .. "src/devices/machine/terminal.cpp",
|
||||
MAME_DIR .. "src/devices/machine/terminal.h",
|
||||
}
|
||||
files {
|
||||
MAME_DIR .. "src/devices/imagedev/bitbngr.cpp",
|
||||
MAME_DIR .. "src/devices/imagedev/bitbngr.h",
|
||||
MAME_DIR .. "src/devices/imagedev/cassette.cpp",
|
||||
MAME_DIR .. "src/devices/imagedev/cassette.h",
|
||||
MAME_DIR .. "src/devices/imagedev/chd_cd.cpp",
|
||||
MAME_DIR .. "src/devices/imagedev/chd_cd.h",
|
||||
MAME_DIR .. "src/devices/imagedev/diablo.cpp",
|
||||
MAME_DIR .. "src/devices/imagedev/diablo.h",
|
||||
MAME_DIR .. "src/devices/imagedev/flopdrv.cpp",
|
||||
MAME_DIR .. "src/devices/imagedev/flopdrv.h",
|
||||
MAME_DIR .. "src/devices/imagedev/floppy.cpp",
|
||||
MAME_DIR .. "src/devices/imagedev/floppy.h",
|
||||
MAME_DIR .. "src/devices/imagedev/harddriv.cpp",
|
||||
MAME_DIR .. "src/devices/imagedev/harddriv.h",
|
||||
MAME_DIR .. "src/devices/imagedev/mfmhd.cpp",
|
||||
MAME_DIR .. "src/devices/imagedev/mfmhd.h",
|
||||
MAME_DIR .. "src/devices/imagedev/midiin.cpp",
|
||||
MAME_DIR .. "src/devices/imagedev/midiin.h",
|
||||
MAME_DIR .. "src/devices/imagedev/midiout.cpp",
|
||||
MAME_DIR .. "src/devices/imagedev/midiout.h",
|
||||
MAME_DIR .. "src/devices/imagedev/printer.cpp",
|
||||
MAME_DIR .. "src/devices/imagedev/printer.h",
|
||||
MAME_DIR .. "src/devices/imagedev/snapquik.cpp",
|
||||
MAME_DIR .. "src/devices/imagedev/snapquik.h",
|
||||
}
|
||||
---------------------------------------------------
|
||||
--
|
||||
--@src/devices/machine/akiko.h,MACHINES["AKIKO"] = true
|
||||
|
@ -190,9 +190,9 @@ end
|
||||
"qtdbg_" .. _OPTIONS["osd"],
|
||||
}
|
||||
links {
|
||||
"frontend",
|
||||
"netlist",
|
||||
"optional",
|
||||
"frontend",
|
||||
"emu",
|
||||
"formats",
|
||||
}
|
||||
|
@ -9,6 +9,14 @@
|
||||
--
|
||||
----------------------------------------------------------------------------
|
||||
|
||||
files {
|
||||
MAME_DIR .. "src/devices/sound/flt_vol.cpp",
|
||||
MAME_DIR .. "src/devices/sound/flt_vol.h",
|
||||
MAME_DIR .. "src/devices/sound/flt_rc.cpp",
|
||||
MAME_DIR .. "src/devices/sound/flt_rc.h",
|
||||
MAME_DIR .. "src/devices/sound/samples.cpp",
|
||||
MAME_DIR .. "src/devices/sound/samples.h",
|
||||
}
|
||||
|
||||
---------------------------------------------------
|
||||
-- DACs
|
||||
|
@ -9,6 +9,10 @@
|
||||
--
|
||||
---------------------------------------------------------------------------
|
||||
|
||||
files {
|
||||
MAME_DIR .. "src/devices/video/poly.h",
|
||||
}
|
||||
|
||||
--------------------------------------------------
|
||||
--
|
||||
--@src/devices/video/315_5124.h,VIDEOS["SEGA315_5124"] = true
|
||||
|
Loading…
Reference in New Issue
Block a user