mirror of
https://github.com/sjlongland/atinysynth.git
synced 2025-10-23 07:00:24 +10:00
Years ago, and on MSP430 not AVR, I found that gcc produced tighter code using `if` instead of `switch`. Thus, I found myself always using `if` and never `switch` if I needed branching, since smaller code is faster code, and we needed all the speed we could get. Turns out, AVR does not have this problem, and we get better performance using `switch`. |
||
---|---|---|
.. | ||
main.c | ||
Makefile | ||
poly_cfg.h |