aboutsummaryrefslogtreecommitdiff
path: root/libpcsxcore/psxbios.c
AgeCommit message (Collapse)Author
2019-07-21psxbios: Do the same for heap_size.gameblabla
2019-07-21psxbios : Use bfreezel for pad_stopped instead of setting it to 0.gameblabla
2019-07-21psxbios : Implement stub for wait_card.gameblabla
Pretty much identical to get_card_status except it's supposed to wait until a non-busy state occurs.
2019-07-21psxbios : Fix a few mistakes :gameblabla
- Remove extra ffile, pfile.. as it is declared elsewhere. - Remove extra condition as it's already being handled by pad_stopped. - Remove n variable from function (pcsx4all did this) as it's useless and documentation doesn't seem to specify it's needed.
2019-07-18psxbios: Add note and update copyright.gameblabla
2019-07-18psxbios: Merge heap fix from PCSX4ALL.gameblabla
2019-07-18psxbios: Init some vars just to be sure.gameblabla
2019-07-18psxbios: Merge PCSX4ALL pad_stopped fix.gameblabla
2019-07-18psxbios.cpp: Add psxBios_card_status(); doesn't seem to affect anythinggameblabla
2019-07-18psxbios: Fixes save issues on Parasite Eve II, Parasite Eve I and othersgameblabla
Merging never-merged fix by Solus for Parasite Eve. I also fixed some GCC warnings about dir->name going out of bounds too. We also make sure to only add '/0' if string is not full and right after the last character in the dir array. This fixes saving/loading in Parasite Eve II, Parasite Eve. It also fixed regressions for the LEGO Racers where other games would break, meaning this should be the proper fix for saves. We're also using our own strlen implementation to avoid any issues or relying on the libc's own strlen.
2019-07-18psxbios: Callback Events should not set event status to busy in TestEvent.gameblabla
We are already doing that in WaitEvent. According to nocash documentation, this also applies to TestEvent as well so let's implement it.
2019-07-18psxbios: Support other syscallsgameblabla
Since they don't do anything however, let's just add a default and break; instead. Interestingly, trying to implement SYS(04h+ can actually crash the HLE bios. Nocash documentation said that it should crash it but due to other reasons, it doesn't and returns to main program instead.
2019-07-18psxbios: Add checks for strlen.gameblabla
Per what Nocash documentation says.
2019-07-18psxbios: Add checks for strcpy & strncpy.gameblabla
This should be closer to documentation.
2019-07-18psxbios: Fixup free.gameblabla
This is needed for Burning Road. Fix comes from PCSX4ALL by dmitryssmagin.
2019-07-18psxbios: Add checks for strcmp & strncmp.gameblabla
Yes, it's supposed to have a lot of checks like these. Also merge some more fixes from PCSX4ALL. (upstream did not have these as far as i know)
2019-07-18psxbios: Stub for get_errorgameblabla
According to a user on PCSX-Reloaded codeplex (now dead), this fixed loading/saving in Final Fantasy Tactics.
2019-07-18psxbios : Several fixes to malloc.gameblabla
- Don't allow malloc to init memory if heap is invalid According to nocash documentation, malloc will not allocate if heap size is too small or invalid. - Also merge some fixes from PCSX4ALL fork by senquack in order to allow Burning Road to run.
2019-07-18psxbios: Add checks for memmove.gameblabla
Always returns dst per documentation.
2019-07-18psxbios : Add checks to memset.gameblabla
This now can be a tricky pony and an improper memset implementation means that you can't play Tomb Raider 4 properly. (Trying to put in the eye of horus will just result in Lara sidestepping) This should hopefully be fixed (and follows nocash doc).
2019-07-18psxbios: Add checks to memcpy.gameblabla
Always returns dst
2019-07-18psxbios: Add checks for bzero.gameblabla
Only return 0 if size is invalid. (0 or 0x7FFFFFFF), return dst if not.
2019-07-18psxbios: Add checks for bcopygameblabla
Nocash documentation say that function refuses to copy any data if dst is NULL or len greater than 0x7FFFFFFF. (In any cases, return value is always dst)
2019-07-18psxbios : Add checks to index and rindex callsgameblabla
Return 0 for index/rindex if src is 0x00.
2019-07-18psxbios: Merge upstream fix for Deliverevent in firstfilegameblabla
Looks like it is only executed for memory cards, that makes sense i guess.
2019-07-18psxbios: Should fix input issues in some games.gameblabla
Someone reported that this fixed Negcon controls in Ridge Racer Revolution and Grand Tour Racing. I doubt this will suffer from regressions ?
2019-07-18psxbios: Fix out-of-bounds issue.gameblabla
Make sure to return 0xff is no TCBs are available. Thanks senquack for the proper fix.
2019-07-18Only PCSX4ALL uses ResetIoCycle. Remove it for now.gameblabla
2019-07-18Fixup buread & buwrite being undefined.gameblabla
2019-07-18psxbios: Improve WaitEvent behaviour according to documentationgameblabla
Nocash says it should return 0 if Event is unused, which it already does so it might be safe to remove the warning about it. (see why below) Then, it says that it should return 1 if event is ready (EvStALREADY). When that happens, it should also set it to ready (EvStACTIVE), unless event mode is EvMdINTR. (aka Callback Events) If it is a callback event, then documentation says it should be stuck in a loop forever. It also says that it can sometime return 0 (a BUG according to nocash), especially if it switched from EvStALREADY to EvStACTIVE. Said return value was previously set to 1, for some reasons. Now that we are covering all the corner cases, we should be returning 0 instead by default to cover the BUG. This should cover how most games expects it to behave now and should make it more robust.
2019-07-18psxbios: Better realloc implementationgameblabla
This should be closer to the real behaviour as described by nocash. It doesn't do any bcopy though but it shouldn't be too much different other than that.
2019-07-18psxbios : Add checks for strncatgameblabla
Returns 0 if src or dst is 0x00.
2019-07-18psxbios: Add todigit implementationgameblabla
Based on CTRX's code : https://github.com/machinamentum/CTRX/blob/master/bios/source/libc.c#L152 I'm not aware of any games using it but it doesn't hurt to have it and it should work fine.
2019-07-18psxbios: Adds putc and getc implementationgameblabla
getc will need to be fixed later but this should do as it is. No issues with putc. Both are similar to psxBios_read and psxBios_write, except size is 1.
2019-07-18psxbios: Return 0x1f801814 for gpu_abort_dmagameblabla
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.
2019-07-18psxbios: Better EnterCiritcal implementationgameblabla
Nocash documentation says it should return 0 if one or none of the bits were changed and return 1 of both bits were set. This fixes Medievil 2, which would freeze upon starting up a game and this properly fixes Digimon World crashing (with fixed strcat implementation). It also possibly fix other games.
2019-07-18psxbios: Add checks for card_write, card_readgameblabla
This also implements a bug which allows writes to 0x400 (Is supposed to only accept sector number between 0..3FFh). Function should return 0 if sector is invalid.
2019-07-18psxbios: Merging improved card_info function from upstreamgameblabla
It should be closer to the real thing, and this commit and the previous one definitely fixes the save issues in Digimon World.
2019-07-18psxbios: Merging fixes from upstream.gameblabla
DeliverEvent functions are executed right after writing/reading instead of after setting v0. This fixes saving in games like LEGO Racers.
2019-07-18psxbios: Add checks to PAD_initgameblabla
Nocash documentation says that function fails if type is not 0x20000000 or 0x20000001. In case of failure, it should return 0. If not, then it should return 2. This fixes input in Digimon World.
2019-07-18psxbios: Add checks to strcatgameblabla
Nocash documentation says that function fails if src or dst is 0. If so, then it must return 0. This fix is required for fixing crash on bootup in Digimon World.
2014-12-21psxbios: don't crash on negative lengthnotaz
Contra Legacy of War does memset(..., -1)
2014-12-21psxbios: merge from pcsxr r90224-r90227notaz
Author: weimingzhi psxbios: format()
2013-11-04psxbios: fix NULL use warnings on newer GCCsnotaz
2013-03-15psxbios: merge from pcsxrnotaz
ckain's overflow fix (patch 13685)
2013-01-18psxbios: handle u modifiernotaz
2012-12-17make non-zlib save compression possiblenotaz
2012-09-13silence some 64bit related warningsnotaz
still need to fix savestate compat
2011-12-05move some gpu status handling to corenotaz
this removes need to update each gpu plugin when this stuff is changed
2011-06-07psxbios: fix some -Wall warningsnotaz