From a6950926cd2481aae7d8898a815172de3e6463b4 Mon Sep 17 00:00:00 2001 From: PPPDUD <107440101+PPPDUD@users.noreply.github.com> Date: Tue, 3 Feb 2026 09:53:48 -0500 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 79a18b08..e5bd62f1 100644 --- a/README.md +++ b/README.md @@ -19,10 +19,10 @@ PS2Recomp is a tool designed to statically recompile PlayStation 2 ELF binaries ### How It Works PS2Recomp works by: -Parsing a PS2 ELF file to extract functions, symbols, and relocations -Decoding the MIPS R5900 instructions in each function -Translating those instructions to equivalent C++ code -Generating a runtime that can execute the recompiled code +* Parsing a PS2 ELF file to extract functions, symbols, and relocations +* Decoding the MIPS R5900 instructions in each function +* Translating those instructions to equivalent C++ code +* Generating a runtime that can execute the recompiled code The translated code is very literal, with each MIPS instruction mapping to a C++ operation. For example, `addiu $r4, $r4, 0x20` becomes `ctx->r4 = ADD32(ctx->r4, 0X20);`.