User:Scalerize: Difference between revisions
Jump to navigation
Jump to search
(One intermediate revision by the same user not shown) | |||
Line 47: | Line 47: | ||
--gs-upscale=none | --gs-upscale=none | ||
--gs-uprender=none | --gs-uprender=none | ||
--gs-use-deferred-l2h=0 | |||
#cdvd | #cdvd | ||
--verbose-cdvd-reads=1 | --verbose-cdvd-reads=1 | ||
Line 76: | Line 77: | ||
</pre> | </pre> | ||
=Optimal General Config= | |||
<pre> | |||
--iop-cycle-scalar=1 | |||
--vu1-di-bits=0 | |||
--vu1-mpg-cycles=150 | |||
--assert-path1-ad=1 | |||
--vu-xgkick-delay=0 | |||
--vu-custom-min-max=0 | |||
--gs-use-mipmap=1 | |||
--gs-use-clut-merge=1 | |||
--gs-kernel-cl="mipmap" | |||
</pre> | |||
Move this info elsewhere: | Move this info elsewhere: | ||
Latest revision as of 04:44, 4 January 2025
IOP audi restarting debugging address? 1F801574 > BF801574
wotm: 4A72C2
Marvel = 0054B5D4
psp speedhack? 08B322B8
Universal safe debugging CLI[edit | edit source]
#ee --ee-cycle-scalar=1 #iop --iop-cycle-scalar=1 --iop-evt-check-full=1 #fpu --fpu-accurate-muldiv=1 --fpu-accurate-mul-fast=1 --fpu-accurate-addsub=1 --fpu-to-double=1 #cop2 --cop2-opt-flags=2 --cop2-opt-vf00=0 --cop2-const-prop=0 --cop2-accurate-mul=1 --cop2-accurate-addsub=1 --cop2-di-bits=1 #vu0 --vu0-opt-flags=2 --vu0-opt-vf00=0 --vu0-const-prop=0 --vu0-di-bits=1 #vu1 --vu1-opt-flags=2 --vu1-opt-vf00=0 --vu1-const-prop=0 --vu1-di-bits=1 --assert-path1-ad=1 #vu --vu-xgkick-delay=0 --vu-custom-min-max=0 --vu-branch-hazard=0 --vu-evil-branches=1 --vu-to-double=1 #gs --gs-use-mipmap=1 --gs-use-clut-merge=1 --gs-force-bilinear=1 --gs-kernel-cl="mipmap" --gs-upscale=none --gs-uprender=none --gs-use-deferred-l2h=0 #cdvd --verbose-cdvd-reads=1 --cdvd-sector-read-cycles=1 #lang --ps2-lang=English ##Potentially unsafe #clamping --vu1-no-clamping=0 --cop2-no-clamping=0 --fpu-no-clamping=0 --vu0-no-clamping=0 #vif1 and disabled MTVU (Might crash, or introduce graphical distortions on some games) --vif1-instant-xfer=0 --vu1=jit-sync --vu1-mpg-cycles=1 #Emu-exclusive commands --vu1-jr-cache-policy=newprog --vu1-jalr-cache-policy=newprog --vu0-jr-cache-policy=newprog --vu0-jalr-cache-policy=newprog --vu0-mpg-cycles=1 --vif1-ignore-cmd-ints=1 --vif-ignore-invalid-cmd=1 --ee-ignore-segfault=readwrite
Optimal General Config[edit | edit source]
--iop-cycle-scalar=1 --vu1-di-bits=0 --vu1-mpg-cycles=150 --assert-path1-ad=1 --vu-xgkick-delay=0 --vu-custom-min-max=0 --gs-use-mipmap=1 --gs-use-clut-merge=1 --gs-kernel-cl="mipmap"
Move this info elsewhere:
Delay GIF
apiRequest(0.1) local eeObj = getEEObject() local emuObj = getEmuObject() eeObj.AddHook(0x0033A540,0xAC430000, function() eeObj.SchedulerDelayEvent("gif.dma", 0x60500) end)
Patch EE memory
apiRequest(0.1) local eeObj = getEEObject() local emuObj = getEmuObject() local patcher = function() eeObj.WriteMem32(0x001958A0, 0x10000086) end emuObj.AddVsyncHook(patcher)
Speedhacks
apiRequest(0.1) local eeObj = getEEObject() local emuObj = getEmuObject() eeObj.AddHook(0x002cc350, 0x78a30000, function() eeObj.AdvanceClock(21000) eeObj.Vu1MpgCycles(2000) eeObj.FastForwardClock() end)