Difference between revisions of "Emulator:JPCSP"

From Wah!ki
Jump to navigation Jump to search
(Created page with "== About == == Configuration == {| class="wikitable" width="100%" |- ! width="10%" | Platform ! width="10%" | Version ! width="10%" | Device ! width="5%" | Exec ! width="5%" | Ty...")
 
Line 31: Line 31:
 
==== Games will not start using command line options ====
 
==== Games will not start using command line options ====
 
Add paramater parsing to the startup script
 
Add paramater parsing to the startup script
 +
 +
<pre>
 +
java -Xmx512m -Djava.library.path=lib/linux-x86 -jar bin/jpcsp.jar $@
 +
</pre>

Revision as of 00:45, 23 April 2011

About

Configuration

Platform Version Device Exec Type commandline_format
Linux SVN Disc Image start-linux-x86.sh D -u "[rompath]/[name].[romext]" -r
Linux SVN File start-linux-x86.sh D N/A

Troubleshooting

bash: ./start-linux-x86.sh: /bin/sh^M: bad interpreter: No such file or directory

Convert startup script to unix format

Games will not start using command line options

Add paramater parsing to the startup script

java -Xmx512m -Djava.library.path=lib/linux-x86 -jar bin/jpcsp.jar $@