Optimize a bit

This commit is contained in:
Miloslav Ciz 2024-08-02 00:05:03 +02:00
parent 2241b4d635
commit 880ae3c805
6 changed files with 120 additions and 25 deletions

View file

@ -50,6 +50,11 @@ void LCR_drawPixel(unsigned long index, uint16_t color)
screen[index] = color;
}
void LCR_log(const char *str)
{
printf("LOG: %s\n",str);
}
int main(int argc, char *argv[])
{
uint8_t running = 1;