Populate the memory map structure

This commit is contained in:
2025-03-20 00:42:19 +02:00
parent 1cd14ad69f
commit 2648ee1bc9
4 changed files with 73 additions and 23 deletions

View File

@@ -2,6 +2,7 @@
#define TYPES_H_
#include <stdint.h>
#include <stddef.h>
typedef uint8_t u8;
typedef uint16_t u16;
@@ -14,6 +15,9 @@ typedef int64_t i64;
typedef float f32;
typedef double f64;
typedef uintptr_t uptr;
typedef ptrdiff_t ptrdiff;
typedef enum { HILOAD_OK = 0, HILOAD_FAIL } HiloadResult;
#endif // TYPES_H_