Homebrew development library for Nintendo 3DS/Horizon OS user mode (Arm11) by devkitPro
Go to file
Dave Murphy cbb00e413d Automate graphics conversion
Makefile:

- Don't set DATA, we're no longer embedding files from there directly

- Add folders from GRAPHICS to VPATH. This is how make finds the source files

- Add PNGFILES variable containing all png files from GRAPHICS folders

- Add png files to OFILES with extension changed to rgb.o

- Add rule to create .rgb.o fromn .rgb using normal bin2o macro

- Add rule to create .rgb from .png using imagemagick

source/main.c

- the extension has changed to .rgb so the header is now <filename>_rgb.h and the variables end in _rgb
2014-12-15 12:35:03 +00:00
examples Automate graphics conversion 2014-12-15 12:35:03 +00:00
libctru render strikethrough & underline 2014-12-13 03:19:57 +00:00
template Revert "Switch to -mfloat-abi=hard, bump version to 0.2.0" 2014-12-05 13:47:05 +00:00
.gitignore Add 3DS application template 2014-11-07 19:12:43 +01:00
README.md remove instructions for manually patching devkitARM 2014-11-22 20:17:41 +00:00

ctrulib

CTR User Library

library for writing user mode arm11 code for the 3DS (CTR)

the goal with this is to create a very straightforward interface with the 3DS's OS. it is not meant to provide higher level functions; to put things in perspective, the purpose of ctrulib would be to sit between the OS and a possible port of SDL rather than replace it.

setup

ctrulib is just a library and needs a toolchain to function. we built ctrulib to be used in conjunction with devkitARM. you may find instructions on how to install devkitARM here : http://devkitpro.org/wiki/Getting_Started

The most recent devkitARM (r43) includes 3DS support and a prebuilt libctru.

To keep up to date with the most recent changes you'll want to checkout ctrulib, build it and install it.

license

This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.

Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:

  1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
  2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
  3. This notice may not be removed or altered from any source distribution.