Recent content by Kugozx

  1. K

    PS4 [Research]PS2 emulator configuration on PS4

    For The Legend of Spyro: The Eternal Night NTSC LUA: apiRequest(0.4) -- The Legend of Spyro: The Eternal Night NTSC (SLUS-21607) local eeObj = getEEObject() local emuObj = getEmuObject() eeInsnReplace(0x00173CB8, 0x44840800, 0x00000000) -- Fixes HUD and menu display. -- Graphic...
  2. K

    PS4 [Research]PS2 emulator configuration on PS4

    Ghost Rider (SLES-54317) FiX TXT --cdvd-sector-read-cycles=2000 --gs-progressive=1 --gs-motion-factor=50 LUA --gametitle=Ghost Rider [SLES-54317] --emu used=bully v.2 apiRequest(0.1) local eeObj = getEEObject() local emuObj = getEmuObject() local gsObj = getGsObject() local...
  3. K

    PS4 [Research]PS2 emulator configuration on PS4

    Try this,maybe it will help: #Fix video anticipated race license --fpu-accurate-muldiv-range=0x00571A90,0x00571A90 --fpu-accurate-muldiv-range=0x00571AB4,0x00571AB4 --fpu-accurate-muldiv-range=0x00571BE0,0x00571BE0 --fpu-accurate-muldiv-range=0x00571C08,0x00571C08
  4. K

    PS4 [Research]PS2 emulator configuration on PS4

    For MTX Mototrax NTSC (SLUS-20399) CLI --cdvd-sector-read-cycles=1000 --gs-kernel-cl="h2lpool" --gs-kernel-cl-up="h2lpool2x2" --gs-h2l-list-opt=1 --gs-h2l-accurate-hash=1 --vu-custom-min-max=0 --vu1-di-bits=0 --vu0-di-bits=0 --vu1-opt-vf00=2 --vu0-opt-vf00=2 --vu1-injection=1...
  5. K

    PS4 [Research]PS2 emulator configuration on PS4

    Try this Tony Hawk's Downhill Jam NTSC (SLUS-21456) --mtvu eeObj.WriteMem32(0x001C4F2C,0x0803fff0) --000fffc0 eeObj.WriteMem32(0x000fffc0,0x0C07140C) --001C5030 eeObj.WriteMem32(0x000fffc4,0x24186000) eeObj.WriteMem32(0x000fffc8,0x3c191200) eeObj.WriteMem32(0x000fffcc,0x37391010)...
  6. K

    PS4 [Research]PS2 emulator configuration on PS4

    Try this For Project 8 NTSC (SLUS-21444) --mtvu eeObj.WriteMem32(0x001CEAE4,0x0803fff0) --000fffc0 eeObj.WriteMem32(0x000fffc0,0x0C073AFA) --001CEBE8 eeObj.WriteMem32(0x000fffc4,0x24186000) eeObj.WriteMem32(0x000fffc8,0x3c191200) eeObj.WriteMem32(0x000fffcc,0x37391010)...
  7. K

    PS4 [Research]PS2 emulator configuration on PS4

    I think I'm already check up.
  8. K

    PS4 [Research]PS2 emulator configuration on PS4

    Try this For Project 8 NTSC (SLUS-21444) --koza's vu rounding eeObj.WriteMem32(0x00474FB0,0xD3400000) --53400000 --freeze skip eeObj.WriteMem32(0x001CFE18,0x100000B0) -- 0x120000B0 OK For Project 8 PAL (SLES-54390) --koza's vu rounding eeObj.WriteMem32(0x00475130,0xD3400000) --53400000...
  9. K

    PS4 [Research]PS2 emulator configuration on PS4

    For Gun PAL (SLES-53523) CLI --gs-uprender=2x2 --gs-upscale=EdgeSmooth --gs-kernel-cl-up="up2x2skipinterp" --host-display-mode=16:9 --cdvd-sector-read-cycles=1000 --vif1-instant-xfer=0 --ee-cycle-scalar=1.1 --iop-cycle-scalar=0.8 #emu used=redfaction LUA -- Gun PAL SLES-53523 --...
  10. K

    PS4 [Research]PS2 emulator configuration on PS4

    For Castlevania - Curse of Darkness (PAL) (SLES_537.55) LUA -- Castlevania: Curse of Darkness (SLES_537.55) -- Widescreen hack by nemesis2000 -- new graphics fix by kozarovv -- emu used= local gpr = require("ee-gpr-alias") apiRequest(0.1) local eeObj = getEEObject() local emuObj =...
  11. K

    PS4 PSX-FPKG (by Jabu) - A Tool to convert PS1 (PSX) games for use on PS4

    Yes, it also fixes microfreezze Blasto PAL, Metal Gear Solid PAL, Grand Turismo 2 and Soul Reaver PAL.
  12. K

    PS4 [Research]PS2 emulator configuration on PS4

    WIP for Devil May Cry 1 [SLUS_202.16] CLI --gs-uprender=2x2 --gs-upscale=edgesmooth --force-frame-blend=1 #emu=Kof98um LUA --gametitle=Devil May Cry (USA) [SLUS_202.16] Game CRC = 0x79B8A95F apiRequest(0.1) local emuObj = getEmuObject() local eeObj = getEEObject() local gsObj =...
  13. K

    PS4 [Research]PS2 emulator configuration on PS4

    Add to the beginning of the lua: local gsObj = getGsObject() In case it helps you to hide the hud: local code_hidehud1 = eeObj.ReadMem16(0x00765572) --L3 local code_showhud1 = eeObj.ReadMem16(0x00765572) --R3 if (code_hidehud1 == 0x0002) then --L3 eeObj.WriteMem8(0x00752471,0x00)...
  14. K

    PS4 [Research]PS2 emulator configuration on PS4

    those are for NTSC Version : https://www.psx-place.com/threads/research-ps2-emulator-configuration-on-ps4.16131/page-153#post-331143
  15. K

    PS4 [Research]PS2 emulator configuration on PS4

    Works perfect, implement it in Devil May Cry 1 PAL change on demand. help to visualizar the subtitles. https://www.psx-place.com/threads/research-ps2-emulator-configuration-on-ps4.16131/page-153#post-331119 Devil May Cry 1 NTSC local gsObj = getGsObject() local code_disable2x2 =...
Back
Top