mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-04-04 17:47:11 +02:00
* Create an `src/3rdparty` folder for third-party code (to add the Grisu2B alfogithm soon). * Split the formatted printer into gint's kprint (src/kprint), its extension and interface (include/gint/kprint.h), and its use in the standard stdio functions (src/std/print.c). * Slightly improve the interface of kformat_geometry() to avoid relying on knowing format specifiers. * Add a function to register more formatters, to allow floating-point formatters without requiring them.
26 lines
1.2 KiB
Text
26 lines
1.2 KiB
Text
Extensions on existing code:
|
|
* kernel: check if cpu_setVBR() really needs to be perma-mapped
|
|
* stdio: support %f in printf
|
|
* project: add license file
|
|
* kernel: group linker script symbols in a single header file
|
|
* kernel: be consistent about *tlb_mapped_memory() in hw_detect()
|
|
* bopti: try to display fullscreen images with TLB access + DMA on fxcg50
|
|
* dma: fx9860g support (need to switch it on and update the Makefile)
|
|
* core: try to leave add-in without reset in case of panic
|
|
* core: use cmp/str for memchr()
|
|
* r61524: brightness control and clean the file
|
|
* core: review forgotten globals and MPU addresses not in <gint/mpu/*.h>
|
|
* core: run destructors when a task-switch results in leaving the app
|
|
* core rtc: use qdiv10 to massively improve division performance
|
|
* topti: let the font specify letter and word spacing
|
|
|
|
Future directions.
|
|
* A complete file system abstraction
|
|
* Integrate overclock management
|
|
* Audio playback using TSWilliamson's libsnd method
|
|
* Serial communication
|
|
* USB communication, using Yatis' reverse-engineering of the module
|
|
* Make fx9860g projects work out of the box on fxcg50
|
|
* Use the DSP to enhance parallel computation
|
|
* Dynamic memory allocation
|
|
* Base for Yatis' threads library
|