diff options
author | gameblabla | 2019-07-18 01:57:53 +0200 |
---|---|---|
committer | gameblabla | 2019-07-18 01:57:53 +0200 |
commit | cd1ea24508e604743ad8d9c67199510c7498ef29 (patch) | |
tree | 3cb30610fce140ed9bdda313d708c005a56e2a02 /libpcsxcore | |
parent | 79dad1b3ff35061e16f7bc160955df6990cbef18 (diff) | |
download | pcsx_rearmed-cd1ea24508e604743ad8d9c67199510c7498ef29.tar.gz pcsx_rearmed-cd1ea24508e604743ad8d9c67199510c7498ef29.tar.bz2 pcsx_rearmed-cd1ea24508e604743ad8d9c67199510c7498ef29.zip |
psxbios: Return 0x1f801814 for gpu_abort_dma
Nocash documentation says that it returns the I/O address.
I doubt any games use it so but it doesn't hurt to have it.
Diffstat (limited to 'libpcsxcore')
-rw-r--r-- | libpcsxcore/psxbios.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpcsxcore/psxbios.c b/libpcsxcore/psxbios.c index 58581e9..775fba7 100644 --- a/libpcsxcore/psxbios.c +++ b/libpcsxcore/psxbios.c @@ -1191,7 +1191,7 @@ void psxBios_sys_a0_4c() { // 0x4c GPU relate GPU_writeData(0x0400000); GPU_writeData(0x0200000); GPU_writeData(0x0100000); - + v0 = 0x1f801814; pc0 = ra; } |