From ac9dc3186a5666c100fd3fa0393eb4d191d2777c Mon Sep 17 00:00:00 2001 From: Ran-j Date: Mon, 14 Apr 2025 22:44:01 -0300 Subject: [PATCH] fix: fix readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4d5d352..38da533 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ 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);`. +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);`. ### Requirements