This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Simple log2 calculation; on FPU-less platform it will bitshift instead of log2 */ | |
// | |
// linux/mac: | |
// clang -fdiagnostics-color=always -g ./tinylog.c -o ./tinylog | |
// CC65: | |
// cl65 -t atari ./tinylog.c -o tinylog.xex | |
// atari800 -nobasic -run ./tinylog.xex | |
#include<stdio.h> | |
#include<stdint.h> |