pup975 wrote:Thanks. I did get it to the part when I run the program. However, I can't get it to run. The path to my ROMS foler is home/arcade1up/Supermodel/ROMS/swtrilgya.zip when I drag the zip file into terminal. Here's what I've tried so far:
$
Here's a step-by-step to get you going:
It appears that your username is "arcade1up", so:
- your build location is:
- Code: Select all
~/model3emu-code/ [ full path : /home/arcade1up/model3emu-code/ ]
- your "game" location is:
- Code: Select all
~/Supermodel/ [full path : /home/arcade1up/Supermodel/ ]
[As you can see above, on unix-alike OSs, the tilde ( ~ ) represents a shortcut to you home directory. so "~/" is the equivalent of, and interchangeable with, "/home/arcade1up/"....
Here you go:
Create a game directory [it could be anything you like, but looks like you've already tried something like this] [BTW, the command will probably fail as the folder already exists, but that's fine..]
- Code: Select all
mkdir ~/Supermodel
Copy the executable file and Config folder, and make an empty NVRAM folder, and finally create a ROMS folder (again, this final command will likely fails as the folder already exists, but no harm if it does)
- Code: Select all
cp ~/model3emu-code/bin/supermodel ~/Supermodel/
cp -r ~/model3emu-code/Config ~/Supermodel/
mkdir ~/Supermodel/NVRAM
mkdir ~/Supermodel/ROMS
Copy the Star Wars.zip rom file to the ROMS folder [it should already be there, but just in case].... You can use the file browser for this if needed...
Finally, run the executable. I'm assuming you want fullscreen at 1080p - if not, leave out the "-fullscreen" option, and/or change the resolution to 1280,720 or whatever...
- Code: Select all
cd ~/Supermodel/
./supermodel ./ROMS/swtrilgya.zip -show-fps -fullscreen -res=1920,1080 -wide-screen
Hope this helps.