diff options
author | 2011-11-06 18:26:09 +0000 | |
---|---|---|
committer | 2011-11-06 18:26:09 +0000 | |
commit | aec813c34ed2c5549ae54b5b806ace62d3595edf (patch) | |
tree | c67401994328fdc2206533523059e2d41520f071 /src/emu/softlist.c | |
parent | 5b26fc8db19fd40bf4dc1e82518764decc9a7ea9 (diff) |
Converted neogeo mvs driver to use software lists in preparation for
multislot support [David Haywood]
Please note: launching convention for Neo-Geo games is now the same as
MESS software lists "mame neogeo gamename" or "mame neogeo -cart
gamename".
Diffstat (limited to 'src/emu/softlist.c')
-rw-r--r-- | src/emu/softlist.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/emu/softlist.c b/src/emu/softlist.c index 157c6d1e4fa..6fd48b5bb76 100644 --- a/src/emu/softlist.c +++ b/src/emu/softlist.c @@ -739,6 +739,8 @@ static void start_handler(void *data, const char *tagname, const char **attribut romflags = ROM_GROUPWORD | ROM_REVERSE | ROM_SKIP(2); else if ( str_loadflag && !strcmp(str_loadflag, "load32_word") ) romflags = ROM_GROUPWORD | ROM_SKIP(2); + else if ( str_loadflag && !strcmp(str_loadflag, "load32_byte") ) + romflags = ROM_SKIP(3); /* ROM_LOAD( name, offset, length, hash ) */ add_rom_entry( swlist, s_name, hashdata, offset, length, ROMENTRYTYPE_ROM | romflags ); |