feat(ex00)

This commit is contained in:
Maix0 2026-04-21 16:40:57 +02:00
parent b6b8e3bceb
commit f021ef0fa6
19 changed files with 1404 additions and 0 deletions

18
ex00/include/mystd.h Normal file
View file

@ -0,0 +1,18 @@
#ifndef MYSTDINT_H
#define MYSTDINT_H
#include <avr/io.h>
typedef unsigned char uint8_t;
typedef signed char int8_t;
typedef uint8_t bool;
#define true (1)
#define false (0)
#define BV(bit) (1 << bit)
#define NULL ((void*)0)
#endif /* MYSTDINT_H */