Decompilation of Castlevania: Symphony of the Night (PSX+Saturn)
Go to file
2022-01-18 19:13:39 +00:00
.github/workflows Do not fail to report if there are no updates to push 2022-01-18 19:13:39 +00:00
asm/main/psxsdk Upload disassembly 2022-01-02 13:35:44 +00:00
bin Upload disassembly 2022-01-02 13:35:44 +00:00
config Adds some menu functions 2022-01-18 19:09:54 +00:00
include Adds some menu functions 2022-01-18 19:09:54 +00:00
src Adds some menu functions 2022-01-18 19:09:54 +00:00
tools Automatically report progress on new commits 2022-01-05 12:31:26 +00:00
.gitignore Upload disassembly 2022-01-02 13:35:44 +00:00
.gitmodules Upload disassembly 2022-01-02 13:35:44 +00:00
checksum.md5 Upload disassembly 2022-01-02 13:35:44 +00:00
diff_settings.py Upload disassembly 2022-01-02 13:35:44 +00:00
dra.sha Upload disassembly 2022-01-02 13:35:44 +00:00
main.sha Upload disassembly 2022-01-02 13:35:44 +00:00
Makefile Upload disassembly 2022-01-02 13:35:44 +00:00
README.md Adds some menu functions 2022-01-18 19:09:54 +00:00

Castlevania: Symphony of the Night disassembly

Recompilable code that creates 1:1 binaries for the commercial videogame Castlevania: Symphony of the Night for the PlayStation 1. This repository aims to create a full decompilation in C.

Game revision

SHA-1 checksum File name Version Progress
54828d4e44ea9575f2a0917ff63def42a304abff main.exe SLUS-00067 N/A
2eac5f7162e77416166c2511c787995488f01c37 DRA.BIN SLUS-00067 progress DRA.BIN

Build

  1. You need gcc-mipsel-linux-gnu that you can easily install on any Debian-based Linux distribution. On Windows it is highly recommended to just use Ubuntu with WSL
  2. Place your main.exe from the file SLUS_000.67 and DRA.BIN in the root directory
  3. Run make extract to generate the assembly files
  4. Run make all to compile the binaries into the build/ directory

Non-matching build

Some of the functions that do not fully match the original game can be compiled by defining #define NON_MATCHING on a header file or by passing `-DNON_MATCHING to the compiler. In theory they might be logically equivalent in-game, but I cannot promise that. Few of them could match by tuning or changing the compiler.

Notes

  • I suspect that GCC 2.7.2 / PSY-Q 3.6 have been used to originally compile DRA.BIN
  • main.exe uses PS-X libraries that might've been created with a different compiler and with -O1 rather than -O2

To do

The project is very barebone at the moment and there is a massive room of improvement, mostly in the infrastructure:

  • The zone overlays (ST/{ZONE}/{ZONE}.BIN) are not yet disassembled
  • There is no CI/CD pipeline to test the correctness of the compiled code