EmuNewz Network
Resident Evil Code Veronica X [NPUB30467] - Printable Version

+- EmuNewz Network (https://www.emunewz.net/forum)
+-- Forum: Official Boards for Emunews Affiliated Emu Projects (https://www.emunewz.net/forum/forumdisplay.php?fid=47)
+--- Forum: Official RPCS3 Forum [archive] (https://www.emunewz.net/forum/forumdisplay.php?fid=172)
+---- Forum: RPCS3 - Commercial Games (https://www.emunewz.net/forum/forumdisplay.php?fid=193)
+----- Forum: RPCS3 - Commercial Games - Intro (https://www.emunewz.net/forum/forumdisplay.php?fid=197)
+----- Thread: Resident Evil Code Veronica X [NPUB30467] (/showthread.php?tid=177162)



Resident Evil Code Veronica X [NPUB30467] - aakh1361 - 01-27-2017

Screen Is Black

Audio:
Convert to 16 bit: false
Dump to file: false
Renderer: XAudio2

Core:
Hook static functions: true
Load liblv2.sprx only: false
Load libraries:
- libadec.prx
- libatrac3plus.prx
- libdmux.prx
- libfiber.prx
- libfs.prx
- libio.prx
- libpamf.prx
- libresc.prx
- libspurs_jq.prx
- libsre.prx
- libvdec.prx

PPU Decoder: Interpreter (precise)
SPU Decoder: Recompiler (ASMJIT)

Quote:F {PPU[0x1000000] Thread (main_thread) [0x00868f38]} class std::runtime_error thrown: Stack overflow (size=0x8, align=0x4, SP=0x2e815c50, stack=*0xd0000000)
(in file C:\rpcs3\rpcs3\Emu\Cell\PPUThread.cpp:417)



RE: Resident Evil Code Veronica X [NPUB30467] - aakh1361 - 02-25-2017

attention : it is whit Hack Build !

Whit small hack game show all intro and go to ingame but screen is black and hear sound game and move character
after press start show menu ingame when exit of menu ingame screen is black


RE: Resident Evil Code Veronica X [NPUB30467] - Annie - 02-26-2017

And what was the hack you used? Please specify those when posting results with hack builds


RE: Resident Evil Code Veronica X [NPUB30467] - aakh1361 - 02-26-2017

This new Wip build kd-11 no need to hack


RE: Resident Evil Code Veronica X [NPUB30467] - Annie - 02-27-2017

It's not kd-11's PR, it's a Nekotekina PR that was made a few days ago regarding Stack Overflows.


RE: Resident Evil Code Veronica X [NPUB30467] - aakh1361 - 02-27-2017

(02-27-2017, 03:32 PM)Annie Wrote: It's not kd-11's PR, it's a Nekotekina PR that was made a few days ago regarding Stack Overflows.

Quote:Pull request #2391 - [WIP] Improve texture cache
gl: Ignore invalid buffer definitions; drop depth subresource restrictions
0.0.1-3975
a day ago by kd-11
I test this PR and see work and I look this name and think relate kd-11


I Change
Quote: if (context.gpr[1] < context.stack_addr)
{
fmt::throw_exception("Stack overflow (size=0x%x, align=0x%x, SP=0x%llx, stack=*0x%x)" HERE, size, align_v, old_pos, context.stack_addr);
}
To

Quote:if (context.gpr[1] < context.stack_addr)
{
const u32 addr = static_cast<u32>(context.gpr[1]);
vm::ps3::_ref<nse_t<u32>>(addr + size) = old_pos;
std::memset(vm::base(addr), 0, size);
return addr;
}
and see work resident evil code veronica

I Now look and see Nekotekina change this line
Quote: if (old_pos >= context.stack_addr && old_pos < context.stack_addr + context.stack_size && context.gpr[1] < context.stack_addr)
{
fmt::throw_exception("Stack overflow (size=0x%x, align=0x%x, SP=0x%llx, stack=*0x%x)" HERE, size, align_v, old_pos, context.stack_addr);
}