Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ;----------------------------------------------------------------------------
- ; Sony Playstation
- ; ePSXe v1.7.0
- ; by Shateredsoul/Brolly/djvj
- ; 1.1
- ;
- ; epsxe can't deal with bin/cue dumps with more than one audio track if you load the cue file directly.
- ; For these to work you must mount the cue on daemon tools and let epsxe boot the game from there.
- ;
- ; Extract all your BIOS files to the bios subfolder. Then goto Config->Bios and select the bios you wish to use.
- ;
- ; Go to Config->Video then choose a plugin. Pete's OpenGL line is preffered
- ; Click Configure (under video plugin) and choose fullscreen and set your desired resolution. Video options/results will vary based on the plugin you choose.
- ;
- ; If you are using images with multiple tracks, set your extension to cue (make sure all your cues are correctly pointing to their tracks).
- ; Go to Config->Cdrom->Configure button and select the drive letter associated with your daemon tools virtual drive.
- ;
- ; TurboButton will only work with DX7 video plugin
- ;----------------------------------------------------------------------------
- ;Turbo key created by Hypnoziz
- turboButton = a ;Key mapping for turbo button assignment
- turboEnabled = 0 ;Initialize turbo state
- Hotkey, %turboButton%, turboProcess
- If ( romExtension = ".cue" ) {
- RunWait, %daemonToolsPath% -mount scsi`, 0`, "%romPath%%romName%%romExtension%"
- Run, %executable% -nogui, %emuPath%
- } Else
- Run, %executable% -nogui -loadiso "%romPath%%romName%%romExtension%", %emuPath%
- Process, WaitClose, %executable%
- If ( romExtension = ".cue" )
- RunWait, %daemonToolsPath% -unmount scsi`, 0
- ExitApp
- turboProcess:
- If (turboEnabled = 0) {
- Send, {DELETE}{END}{END}{DELETE}
- turboEnabled = 1
- } Else {
- Send, {DELETE}{END}{DELETE}
- turboEnabled = 0
- }
- Return
- CloseProcess:
- Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement