No description
Find a file
2025-12-30 18:54:52 +01: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 FINALLY WORKING AGFEFHE 2025-12-30 21:40:40 +01:00
raylib@705ce45a33 Initial commit 2025-08-11 00:35:53 +02:00
raylibpsp@f1cfd6da83 FINALLY WORKING AGFEFHE 2025-12-30 21:40:40 +01:00
src Fixed all bugs 2025-12-30 18:54:52 +01:00
tests FINALLY WORKING AGFEFHE 2025-12-30 21:40:40 +01: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 FINALLY WORKING AGFEFHE 2025-12-30 21:40:40 +01:00
Makefile FINALLY WORKING AGFEFHE 2025-12-30 21:40:40 +01:00
pspbuild.sh FINALLY WORKING AGFEFHE 2025-12-30 21:40:40 +01:00
README.md FINALLY WORKING AGFEFHE 2025-12-30 21:40:40 +01: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 For libcurl support: wf-pacman -Sy toolchain-gcc-arm-none-eabi-zlib blocksds-mbedtls blocksds-libcurl

  • make commands-ds
  • make ds-build

For PC:

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

Or build them all at once: make build

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


Run:

PSP Version: make psp-run

NDS Version: make ds-run

PC Version: make pc-run

All of them at once: make run