cog/Frameworks/HighlyExperimental/HighlyExperimental/Core
Christopher Snowhill 13bd399b31 Clean up most warnings and update some dependencies 2021-04-29 18:16:24 -07:00
..
.gitignore Replaced AudioOverload with HighlyComplete 2013-09-30 03:36:30 -07:00
Core.pro Replaced AudioOverload with HighlyComplete 2013-09-30 03:36:30 -07:00
PSXCore.vcxproj Replaced AudioOverload with HighlyComplete 2013-09-30 03:36:30 -07:00
PSXCore.vcxproj.filters Replaced AudioOverload with HighlyComplete 2013-09-30 03:36:30 -07:00
Readme.txt Replaced AudioOverload with HighlyComplete 2013-09-30 03:36:30 -07:00
bios.c Cleaned up most of the warnings, eliminated use of deprecated APIs, and fixed the hotkeys crashing. 2013-10-03 01:00:58 -07:00
bios.h Clean up most warnings and update some dependencies 2021-04-29 18:16:24 -07:00
emuconfig.h Replaced AudioOverload with HighlyComplete 2013-09-30 03:36:30 -07:00
iop.c Cleaned up most of the warnings, eliminated use of deprecated APIs, and fixed the hotkeys crashing. 2013-10-03 01:00:58 -07:00
iop.h Clean up most warnings and update some dependencies 2021-04-29 18:16:24 -07:00
ioptimer.c Replaced AudioOverload with HighlyComplete 2013-09-30 03:36:30 -07:00
ioptimer.h Replaced AudioOverload with HighlyComplete 2013-09-30 03:36:30 -07:00
mkhebios.c Replaced AudioOverload with HighlyComplete 2013-09-30 03:36:30 -07:00
mkhebios.h Replaced AudioOverload with HighlyComplete 2013-09-30 03:36:30 -07:00
mkhebios_overlays.h Replaced AudioOverload with HighlyComplete 2013-09-30 03:36:30 -07:00
mkhebios_scripts.h Replaced AudioOverload with HighlyComplete 2013-09-30 03:36:30 -07:00
psx.c Cleaned up most of the warnings, eliminated use of deprecated APIs, and fixed the hotkeys crashing. 2013-10-03 01:00:58 -07:00
psx.h Clean up most warnings and update some dependencies 2021-04-29 18:16:24 -07:00
r3000.c Replaced AudioOverload with HighlyComplete 2013-09-30 03:36:30 -07:00
r3000.h Clean up most warnings and update some dependencies 2021-04-29 18:16:24 -07:00
r3000asm.c Replaced AudioOverload with HighlyComplete 2013-09-30 03:36:30 -07:00
r3000asm.h Replaced AudioOverload with HighlyComplete 2013-09-30 03:36:30 -07:00
r3000dis.c Replaced AudioOverload with HighlyComplete 2013-09-30 03:36:30 -07:00
r3000dis.h Replaced AudioOverload with HighlyComplete 2013-09-30 03:36:30 -07:00
r3000predict.txt Replaced AudioOverload with HighlyComplete 2013-09-30 03:36:30 -07:00
spu.c Replaced AudioOverload with HighlyComplete 2013-09-30 03:36:30 -07:00
spu.h Replaced AudioOverload with HighlyComplete 2013-09-30 03:36:30 -07:00
spucore.c Fix PSF1 playback for Dragon Ball: Final Bout, Title Screen 2020-02-17 19:50:32 -08:00
spucore.h Replaced AudioOverload with HighlyComplete 2013-09-30 03:36:30 -07:00
vfs.c Replaced AudioOverload with HighlyComplete 2013-09-30 03:36:30 -07:00
vfs.h Replaced AudioOverload with HighlyComplete 2013-09-30 03:36:30 -07:00

Readme.txt

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

PSX emulation core - PS1/PS2

This core emulates the PS2 IOP, which can conveniently be dropped into PS1
compatibility mode to play PS1 sound as well.

The unfortunate dirty secret here is that Sony BIOS is used.  Originally this
was the plain 512K SCPH1001 image we all know and love.  But when PS2 support
was added, starting with core version 0007 (HE 1.08), a new technique was used.
A PS2 BIOS image (5.0 North American) is stripped module-by-module to just the
necessary code for sound playing, plus PS1 compatibility (TBIN/SBIN).  The
result is about 350K smaller when compressed.

Making this stuff 100% legal (via IOP kernel and PS1 BIOS HLE) is on the to-do
list.


mkhebios - This directory contains the tools for generating the new-style PS2
  BIOS images.

he - Source code for HE IOP module.  This is the code that handles "hefile:"
  requests.  Compiled into an .IRX file and then included in the mkhebios
  process.


SHTest - A system for testing the emulation core for byte order / alignment
  issues, by compiling it to a sh-arm-elf target and then running it in a simple
  emulator.  Slow, but effective.


bios.c - when compiled, contains the BIOS image.  Also includes some environment
  variable-like stuff (can be set in mkhebios).

iop.c - IOP emulation (mostly just glue between other modules)

ioptimer.c - IOP timers (root counters), both the 16-bit PS1 style and 32-bit
  PS2 style.

psx.c - top-level PS1/PS2 emulation.

r3000.c - R3000 core. all C, all slow (though with the wait loop detection,
  this hasn't been a big deal).

r3000asm.c - R3000 quick assembler as used in PSFLab.

r3000dis.c - R3000 disassembler (also as used in PSFLab).

spu.c - SPU1 or SPU2 emulation.

spucore.c - Emulates one SPU core (24 channels).  PS2 has a pair of these.

vfs.c - Virtual PSF2 filesystem stuff.