Core Native GBA 0.0.17
create your own game-engine with just lua for nitendo game boy advance console.
Loading...
Searching...
No Matches
Core Native GBA

This project is a basic micro-gameengine to run lua in the Nintendo Game Boy Advanced, which can be expanded to a custom engine, such as Gly Engine or Love2d.


Warning
there is no sanitization, error handling or observation of resource consumption, all of this takes up precious CPU time, bad code will make the game crash with a black screen.

Developing a multiplatform game with desktop support is recommended, especially for testing Lua code!

Gly Engine

cmake -Bbuild -H. -DGAME=@pong
make -C build

Love2D

cmake -Bbuild -H. -DGAME=@love:pong -DENGINE=@love
make -C build

Custom Engine

cmake -Bbuild -H. -DGAME=path/game.lua -DENGINE=path/engine.lua
make -C build