feat(ex00): is done

This commit is contained in:
Maix0 2026-04-22 23:15:50 +02:00
commit 19a4f34b55
No known key found for this signature in database
22 changed files with 1378 additions and 0 deletions

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

@ -0,0 +1,20 @@
#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)
#ifndef NULL
#define NULL ((void*)0)
#endif
#endif /* MYSTDINT_H */