diff options
author | 2016-04-23 12:18:05 +0200 | |
---|---|---|
committer | 2016-04-23 12:18:05 +0200 | |
commit | 9a3b5d9a7557e34e6f398f3ec703085be25d6370 (patch) | |
tree | 204ea162147f715a61c47c53d571a8208266ddbf /scripts/src/machine.lua | |
parent | 1c726824f2b2cc7c6c03ff975e548b72f9b2c0a9 (diff) |
mode devices to proper library (nw)
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 49 |
1 files changed, 48 insertions, 1 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index b364535e3c1..25b8636d72e 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -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 |