diff options
author | 2016-08-11 17:16:35 -0400 | |
---|---|---|
committer | 2016-08-11 17:16:35 -0400 | |
commit | 75f5be77b05e9333b2f2f8325af3cacd17c8e0d4 (patch) | |
tree | c3311ac3a653ff38f0663410b72de5d474cc8d71 /scripts/src/emu.lua | |
parent | c0b51e99f1602c16e71a8248746528eeefd61e07 (diff) |
Changed how ROM_COPY and ROM_FILL are represented in tiny_rom_entry to be more how they were in the past
Turbosub had a ROM_COPY declaration with an expression ('ROM_COPY( "main_code", 0x18000 + 0x2000,...) and this simply did not work with the new model. This required changing ROM_* declarations to more resemble how they used to be and to perform the conversion on load.
Diffstat (limited to 'scripts/src/emu.lua')
-rw-r--r-- | scripts/src/emu.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/src/emu.lua b/scripts/src/emu.lua index 78b61d03d54..20b93b38eff 100644 --- a/scripts/src/emu.lua +++ b/scripts/src/emu.lua @@ -150,6 +150,7 @@ files { MAME_DIR .. "src/emu/romload.cpp", MAME_DIR .. "src/emu/romload.h", MAME_DIR .. "src/emu/romentry.h", + MAME_DIR .. "src/emu/romentry.cpp", MAME_DIR .. "src/emu/save.cpp", MAME_DIR .. "src/emu/save.h", MAME_DIR .. "src/emu/schedule.cpp", |