Skip to content

Latest commit

 

History

History
46 lines (30 loc) · 1.14 KB

File metadata and controls

46 lines (30 loc) · 1.14 KB

Radicorn 🦄

A GBA game built with Carp.

Play it online...

Building

Both methods produce a radicorn.gba file that can be played in an emulator or on a real GBA.

Containerized

There is a Dockerfile to build using a containerized environment without installing dependencies locally.

Using Podman:

podman build -t radicorn . && podman run --rm -v .:/radicorn:z localhost/radicorn:latest make

Using Docker:

docker build -t radicorn . && docker run --rm -v .:/radicorn radicorn:latest make

Native Build

See Build Dependencies below

make

Build Dependencies

  • Carp
  • devkitARM
  • grit (should be included in gba-dev package from devkitpro)
  • libtonc (should be included in gba-dev package from devkitpro)

License

The code is released under MIT, see LICENSE.
The assets are released under CC-BY.

Credits

Inspired by the Chrome Dino.