No description
Find a file
2025-08-11 21:14:54 +02:00
.helix Initial commit 2025-08-11 00:35:53 +02:00
assets Cleaned up root directory 2025-08-11 21:14:54 +02:00
include/ds Fixed __GLIBC_USE error on PSP 2025-08-11 00:58:05 +02:00
makefiles Cleaned up root directory 2025-08-11 21:14:54 +02:00
raylib@705ce45a33 Initial commit 2025-08-11 00:35:53 +02:00
raylibpsp@e9e0fc80e1 Updated pspbuild.sh script 2025-08-11 19:02:12 +02:00
src Updated pspbuild.sh script 2025-08-11 19:02:12 +02:00
.gitignore Initial commit 2025-08-11 00:35:53 +02:00
.gitmodules Initial commit 2025-08-11 00:35:53 +02:00
.ignore Cleaned up root directory 2025-08-11 21:14:54 +02:00
generate_compile_commands.sh Fixed __GLIBC_USE error on PSP 2025-08-11 00:58:05 +02:00
Makefile Cleaned up root directory 2025-08-11 21:14:54 +02:00
pspbuild.sh Updated pspbuild.sh script 2025-08-11 19:02:12 +02:00
README.md Updated pspbuild.sh script 2025-08-11 19:02:12 +02:00

multiOS Engine

A simple template for games/homebrew tools to support multiple consoles (PSP, NDS, PC)

How to use:

Build:

For PSP:

You'll need PSPDev installed on your computer

  • ./pspbuild.sh
  • make commands-psp
  • make psp-build

For NDS:

You'll need BlocksDS installed on your computer

  • make commands-ds
  • make ds-build

For PC:

  • cd ./raylib/src && make && ../../
  • make commands-pc
  • make pc-build

Or build them all at once:

You should at least build them all separatly to make sure that everything works

Then run: make build


Run:

PSP Version: make psp-run

NDS Version: make ds-run

PC Version: make pc-run

All of them at once: make run