From d16656c176bc7bb7f5e69c3c2c1eb6a5ee1a36ce Mon Sep 17 00:00:00 2001 From: Jeremy Herbert Date: Thu, 17 Jun 2021 17:36:33 +1000 Subject: [PATCH] Create README.md --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..d4b5608 --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# libgba +libgba is a C library for the Gameboy Advance which contains full register/structure definitions for the GBA hardware, as well as some additional functionality which is useful for application development. This extra functionality includes: + +- C wrappers for [BIOS functions](https://problemkaputt.de/gbatek.htm#biosfunctions): division, square root, decompression, etc +- A text console with printf support and ANSI color escape codes + +The best place to find usage examples is in the [gba-examples](https://github.com/devkitPro/gba-examples) repository. libgba is also included (along with the examples) in the [devkitPro](https://devkitpro.org/wiki/Getting_Started) toolkit for GBA development.