From 6524d48f23fc6a946c8ce0a68dc24e4ecad4e0a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dami=C3=A1n=20Parrino?= Date: Fri, 8 Mar 2024 12:08:59 -0300 Subject: [PATCH] Update README.md --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index bc6b5329..83057a65 100644 --- a/README.md +++ b/README.md @@ -33,27 +33,27 @@ See the LICENSE files for more information. Engine. * An implementation of the libGUM library. libGUM provides an interface for manipulating matrices for use in 3D software. -* A simple audio library which can be used to play back PCM audio streams. +* A simple audio library that can be used to play back PCM audio streams. * Support for building static executables and PRX files (relocatable modules). ### PSPSDK also includes several tools to assist in building PSP software: -* bin2c, bin2o, and bin2s for converting binary files into C source, object +* `bin2c`, `bin2o`, and `bin2s` for converting binary files into C source, object files, and assembler source files, respectively. -* mksfo for creating PARAM.SFO files. -* pack-pbp and unpack-pbp for adding files to and removing files from EBOOT.PBP. -* psp-config for locating PSPDEV tools and libraries. -* psp-prxgen for converting specially made ELFs to PRX files. -* psp-build-exports for creating export tables -* psp-fixup-imports for fixing up import tables post-linking to remove unused +* `mksfo` and `mksfoex` for creating PARAM.SFO files. +* `pack-pbp` and `unpack-pbp` for adding and removing files from EBOOT.PBP. +* `psp-config` for locating PSPDEV tools and libraries. +* `psp-prxgen` for converting specially made ELFs to PRX files. +* `psp-build-exports` for creating export tables +* `psp-fixup-imports` for fixing up import tables post-linking to remove unused functions from the executable. Documentation for the libraries are also provided, and can be found in the doc/ directory of the PSPSDK source and binary distributions. -A library for Make (build.mak) is also included to provide an easy way to build +A library for Make (`build.mak`) is also included to provide an easy way to build simple programs and libraries. See any PSPSDK sample program for details on how -build.mak is used. +`build.mak` is used. ## Installation