Need help in Jpcsp - Printable Version +- EmuNewz Network (https://www.emunewz.net/forum) +-- Forum: PSP Emulation (https://www.emunewz.net/forum/forumdisplay.php?fid=191) +--- Forum: Misc PSP Discussion (https://www.emunewz.net/forum/forumdisplay.php?fid=104) +--- Thread: Need help in Jpcsp (/showthread.php?tid=55928) |
Need help in Jpcsp - Jenice - 05-29-2012 I have downloaded the emulator but i cant seem to get it work >< when i open start-windows-x86, it doesnt open the emulator but the notepad the contents of the notepad is @echo off set PATH=%PATH%;lib\;lib\windows-x86\ if NOT EXIST "%SystemRoot%\SysWOW64" goto JAVA32 set key=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft\Java Runtime Environment goto JAVA :JAVA32 set key=HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Runtime Environment :JAVA set JAVA_VERSION= set JAVA_HOME= for /f "tokens=3* skip=2" %%a in ('reg query "%key%" /v CurrentVersion') do set JAVA_VERSION=%%a for /f "tokens=2* skip=2" %%a in ('reg query "%key%\%JAVA_VERSION%" /v JavaHome') do set JAVA_HOME=%%b if not exist "%JAVA_HOME%\bin\java.exe" goto JAVAMISSING echo Running Jpcsp 32bit... "%JAVA_HOME%\bin\java" -Xmx1024m -XX:MaxPermSize=128m -XX:ReservedCodeCacheSize=64m -Djava.library.path=lib/windows-x86 -jar bin/jpcsp.jar %* goto END :JAVAMISSING echo The required version of Java has not been installed or isn't recognized. echo Go to http://java.sun.com to install the 32bit Java JRE. pause :END i have already installed java any solution? RE: Need help in Jpcsp - Zekro - 05-29-2012 http://www.sevenforums.com/attachments/general-discussion/46586d1263052644-bat-files-open-notepad-instead-running-help-associate-batfileexecution.reg Try this,it seems that your computer is set to open it with notepad.Use the link and it should work RE: Need help in Jpcsp - Jenice - 05-29-2012 (05-29-2012, 09:12 AM)virgil94 Wrote: http://www.sevenforums.com/attachments/general-discussion/46586d1263052644-bat-files-open-notepad-instead-running-help-associate-batfileexecution.reg oo thx! its working now XD |