Maniac Mansion NES Question

Ask for help with ScummVM problems

Moderator: ScummVM Team

Post Reply
metalmario991
Posts: 4
Joined: Thu Oct 29, 2015 1:51 am

Maniac Mansion NES Question

Post by metalmario991 »

I believe I heard that Maniac Mansion NES can be run on SCUMMVM but I'm not sure if it is true. Also, I don't know how to get it to work so steps on how to get it to work if it is true would be nice.
digitall
ScummVM Developer
Posts: 1172
Joined: Thu Aug 02, 2012 1:40 pm

Post by digitall »

http://wiki.scummvm.org/index.php/Datafiles

http://wiki.scummvm.org/index.php/Dataf ... nhanced.29

http://wiki.scummvm.org/index.php/User_ ... ansion_NES

P.S. See Forum Rule #1 i.e. we often have good documentation if you look for it.

P.P.S. You will need either a commercial cartridge dumper to dump a ROM image of the cartridge. If you don't have one, you can build one from an open source design. See: https://github.com/digitall/eprom_reader
metalmario991
Posts: 4
Joined: Thu Oct 29, 2015 1:51 am

Post by metalmario991 »

Thank you I wasn't sure where to look for the documents.
metalmario991
Posts: 4
Joined: Thu Oct 29, 2015 1:51 am

Instructions

Post by metalmario991 »

Is there a visual guide to this? I got it wrong and I'm a little confused about the instructions. I've never used Hex Editor before.
digitall
ScummVM Developer
Posts: 1172
Joined: Thu Aug 02, 2012 1:40 pm

Post by digitall »

If you are using Unix, then you can do this with the dd utility:
dd if=<ROM Input File Name> bs=1 skip=16 of=<ROM Output File Name>

This should work on OSX as well. If you are running Windows, then you should be able to use https://en.wikipedia.org/wiki/UnxUtils to do this.

For more information, see https://en.wikipedia.org/wiki/Dd_%28Unix%29

The options I have given are "bs=1" which sets the block size to 1 byte and "skip=16" which skips 16 blocks, thus 16 bytes before copying the rest of the file.

Apart from this, I think the "extract_mm_nes" utility in scummvm-tools will operate on the full ROM file dumped out and extract the required LFL files which can be used instead of the ROM image.
Post Reply