feat(ex00): is done

This commit is contained in:
Maix0 2026-04-19 18:00:32 +02:00
parent a8d64871b1
commit dd41c1f072
17 changed files with 978 additions and 0 deletions

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

@ -0,0 +1,19 @@
#ifndef MYSTDINT_H
#define MYSTDINT_H
typedef unsigned int uint16_t;
typedef signed int int16_t;
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 */