feat(ex01): ex01 is complete

This commit is contained in:
Maix0 2026-04-14 14:37:39 +02:00
parent 49164a0c18
commit 7eb2daf73f
5 changed files with 129 additions and 0 deletions

15
ex01/include/mystd.h Normal file
View file

@ -0,0 +1,15 @@
#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)
#endif /* MYSTDINT_H */