1
0
mirror of https://github.com/sjlongland/atinysynth.git synced 2025-09-13 10:03:15 +10:00

README.md: Shout out to Luciano Martorella (@lmartorella)

Brilliant work on porting to the Microchip PIC and enhancements
to the synth in general.
This commit is contained in:
Stuart Longland 2021-06-08 08:26:10 +10:00
parent 48c641c15a
commit 5df958fbb1
Signed by: stuartl
GPG Key ID: 6AA32EFB18079BAA

View File

@ -18,8 +18,8 @@ The library runs as a state machine. Synthesis is performed completely using
only integer arithmetic operations: specifically addition, subtraction, left
and right shifts, and occasional multiplication. This makes it suitable for
smaller CPU cores such as Atmel's TinyAVR, ARM's Cortex M0+, lower-end TI
MSP430 and other minimalist CPU cores that lack hardware multipliers or
floating-point hardware.
MSP430, [Microchip PIC12](https://github.com/lmartorella/atinysynth) and other
minimalist CPU cores that lack hardware multipliers or floating-point hardware.
The data types and sizes are optimised for 8-bit microcontroller hardware.