Alternative library and kernel for add-in development on fx-9860G and fx-CG50 under Linux.
Go to file
Lephe 3edb80018c
quick fixes and definitely a few bugs in there
2024-03-21 19:08:14 +01:00
cmake Start working on libgint-fxascg - compilation options 2024-03-21 18:12:55 +01:00
include/gint quick fixes and definitely a few bugs in there 2024-03-21 19:08:14 +01:00
src quick fixes and definitely a few bugs in there 2024-03-21 19:08:14 +01:00
.gitignore add GiteaPC support 2021-01-16 18:29:32 +01:00
CMakeLists.txt quick fixes and definitely a few bugs in there 2024-03-21 19:08:14 +01:00
README.md update of README.md 2024-03-21 18:18:32 +01:00
TODO render-fx: turn bopti_image_t's data array into a pointer 2024-01-29 09:49:34 +01:00
fx9860g.ld.c ld: generate linker scripts; add fxcg50_fastload.ld 2023-01-15 01:36:28 +01:00
fxcg50.ld.c ld: generate linker scripts; add fxcg50_fastload.ld 2023-01-15 01:36:28 +01:00
giteapc.make Start working on libgint-fxascg - compilation options 2024-03-21 18:12:55 +01:00

README.md

gint project

gint (pronounce “guin”) is an add-in unikernel for CASIO calculators of the fx-9860G II and fx-CG 50 families. It provides a mostly free-standing runtime and is used to develop add-ins under Linux, along with specialized GCC toolchains and the fxSDK.

When running in an add-in, gint takes control of the calculator's hardware from the operating system, and manages it with its own drivers. It exposes a new, richer API that takes advantage of the full capabilities of the machine.

This is free software: you may use it for any purpose, share it, modify it, and share your changes. Credit is not required, but please let me know!

gint used to include third-party code that has now been moved to the FxLibc. If you stumble upon it in the history, check the README file at that time for license details.

Programming interface

Because of its free-standing design, gint's API provides direct and efficient access to low-level MPU features, which includes:

  • Multi-key management with event systems suitable for games
  • Hardware timers with sub-millisecond and sub-microsecond resolution
  • Fast screen drivers with DMAC on fx-CG 50
  • Efficient and user-extendable interrupt management
  • Safe access to on-chip and DSP memory areas
  • Hardware-driven memory primitives (DMA, DSP)

The library also offers powerful higher-level features:

  • An enhanced version of the system's GetKey() and GetKeyWait()
  • A gray engine that works by rapidly swapping monochrome images on fx-9860G II
  • Blazingly fast rendering functions (image rendering is 10 times faster than MonochromeLib)
  • Integrated font management

A couple of libraries extend these features, including:

  • libprof: Profiling and performance evaluation
  • libimg: Versatile image transformations
  • OpenLibm: A port of the standard math library (actually needed by gint)
  • fxlibc: A community standard library with dedicated SuperH optimizations (in progress; needed by gint unless you're trying out Newlib)
  • Integration with a Newlib port by Memallox (unstable)

Installing with GiteaPC

gint can be installed automatically with GiteaPC.

% giteapc install Lephenixnoir/gint

Normally you don't use gint directly, instead the fxSDK provides project templates that are set up to use gint. Please see the fxSDK README file for details.

Building and installing manually

gint is built using the fxSDK, which provides a suitable CMake environment for the calculator. gint is always installed in the compiler's install path (as given by sh-elf-gcc --print-search-dirs) which is detected automatically, so normally you don't need to set the install prefix.

gint depends on OpenLibm and fxlibc (linked above). Both can be installed easily (essentially copy-paste the command from the respective READMEs). You can technically use another libc but there be dragons.

Building for fx-9860G II

fxsdk build-fx will invoke CMake and make. If you have specific configuration options, run once with -c to configure.

% fxsdk build-fx -c <OPTIONS...>

Run without -c to build. This configures automatically.

% fxsdk build-fx
% fxsdk build-fx install

The available options are:

  • -DGINT_STATIC_GRAY=1: Put the gray engine's VRAMs in static RAM instead of using malloc()

Building for fx-CG 50

Same as fx-9860G II, except the command is fxsdk build-cg instead of fxsdk build-fx.

The available options are:

  • -DGINT_USER_VRAM=1: Store all VRAMs in the user stack (takes up 350k/512k)
% fxsdk build-cg
% fxsdk build-cg install

"Cross-Building" a fx-9860G II project for fx-CG 50

fx-9860G II sources can be automatically converted to run on fx-CG 50, provided no low level function/specific hardware manipulation/or syscall is used by the program.

The command is very similar to fx-9860G II one, except it is fxsdk build-fx-as-cg instead of fxsdk build-fx.

The available options are:

% fxsdk build-fx-as-cg
% fxsdk build-fx-as-cg install

Using in CMake-based add-ins

Find the Gint module and link against Gint::Gint. gint declares the include and library paths needed to link with OpenLibm and the libc, and will automatically link both.

find_module(Gint 2.1 REQUIRED)
target_link_libraries(<target_name> Gint::Gint)

Using in Makefile-based add-ins

Projects created with the fxSDK link with gint out-of-the-box. If you're not using the fxSDK, you will need to:

  • Build with -ffreestanding -fstrict-volatile-bitfields;
  • Link with -T fx9860g.ld -lgint-fx -lopenlibm -lc on fx-9860G;
  • Link with -T fxcg50.ld -lgint-cg -lopenlibm -lc on fx-CG 50.

Manually building a fx-9860G project to run on a fx-CG50 can be done :

  • Build with -m4-nofpu -mb -DFXCG50 -DFX9860G_AS_CG;
  • Link with -T fxcg50.ld -lgint-fxascg -lopenlibm -lc.

If you don't have a standard library such as Memallox's port of newlib, you also need -nostdlib. I typically use -m3 -mb or -m4-nofpu -mb to specify the platform, but that may not even be necessary.