Initial Commit

This commit is contained in:
2026-08-26 23:09:04 +02:00
commit 1f4390a42b
25 changed files with 13462 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#ifndef RAM_H
#define RAM_H
#include "stdint.h"
#define RAM_SIZE (55 * 1024) // 55KiB
//#define RAM_SIZE (64 * 1024) // Full range, DEBUG mode
#define RAM_BASE (0x00) // 0
int createRAM(uint8_t **ram);
void destroyRAM(uint8_t *ram);
#endif // RAM_H