diff options
author | 2016-03-17 09:22:16 -0400 | |
---|---|---|
committer | 2016-03-17 09:22:16 -0400 | |
commit | 26ccf5e75fc542b073346f003f1d6bcc39c6c8ca (patch) | |
tree | 9781845d0dfffcf74a76feb1c934ce7e78bf08e9 /scripts/src | |
parent | 6cd37a0498b9aa7bc4f910ce5992d6ab1b84ef3f (diff) | |
parent | 0442b2c2f33fc383f43dc608606343b9c27ad73f (diff) |
Merge branch 'master' of https://github.com/mamedev/mame.git
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/bus.lua | 38 | ||||
-rw-r--r-- | scripts/src/main.lua | 1 |
2 files changed, 39 insertions, 0 deletions
diff --git a/scripts/src/bus.lua b/scripts/src/bus.lua index 1379c572fa8..e4451462806 100644 --- a/scripts/src/bus.lua +++ b/scripts/src/bus.lua @@ -2587,3 +2587,41 @@ if (BUSES["NEWBRAIN"]~=null) then MAME_DIR .. "src/devices/bus/newbrain/fdc.h", } end + +--------------------------------------------------- +-- +--@src/devices/bus/svi3x8/expander/expander.h,BUSES["SVI_EXPANDER"] = true +--------------------------------------------------- + +if (BUSES["SVI_EXPANDER"]~=null) then + files { + MAME_DIR .. "src/devices/bus/svi3x8/expander/expander.cpp", + MAME_DIR .. "src/devices/bus/svi3x8/expander/expander.h", + MAME_DIR .. "src/devices/bus/svi3x8/expander/modules.cpp", + MAME_DIR .. "src/devices/bus/svi3x8/expander/modules.h", + MAME_DIR .. "src/devices/bus/svi3x8/expander/sv601.cpp", + MAME_DIR .. "src/devices/bus/svi3x8/expander/sv601.h", + } +end + +--------------------------------------------------- +-- +--@src/devices/bus/svi3x8/slot/slot.h,BUSES["SVI_SLOT"] = true +--------------------------------------------------- + +if (BUSES["SVI_SLOT"]~=null) then + files { + MAME_DIR .. "src/devices/bus/svi3x8/slot/slot.cpp", + MAME_DIR .. "src/devices/bus/svi3x8/slot/slot.h", + MAME_DIR .. "src/devices/bus/svi3x8/slot/cards.cpp", + MAME_DIR .. "src/devices/bus/svi3x8/slot/cards.h", + MAME_DIR .. "src/devices/bus/svi3x8/slot/sv801.cpp", + MAME_DIR .. "src/devices/bus/svi3x8/slot/sv801.h", + MAME_DIR .. "src/devices/bus/svi3x8/slot/sv803.cpp", + MAME_DIR .. "src/devices/bus/svi3x8/slot/sv803.h", + MAME_DIR .. "src/devices/bus/svi3x8/slot/sv806.cpp", + MAME_DIR .. "src/devices/bus/svi3x8/slot/sv806.h", + MAME_DIR .. "src/devices/bus/svi3x8/slot/sv807.cpp", + MAME_DIR .. "src/devices/bus/svi3x8/slot/sv807.h", + } +end diff --git a/scripts/src/main.lua b/scripts/src/main.lua index c9c99a354c3..18a5b28210f 100644 --- a/scripts/src/main.lua +++ b/scripts/src/main.lua @@ -109,6 +109,7 @@ end local emccopts = "" emccopts = emccopts .. " -O3" emccopts = emccopts .. " -s USE_SDL=2" + emccopts = emccopts .. " -s USE_SDL_TTF=2" emccopts = emccopts .. " --memory-init-file 0" emccopts = emccopts .. " -s ALLOW_MEMORY_GROWTH=0" emccopts = emccopts .. " -s TOTAL_MEMORY=268435456" |