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
+15
View File
@@ -0,0 +1,15 @@
#ifndef ROM_H
#define ROM_H
#include "io.h"
#include <stdint.h>
#define ROM_SIZE (8 * 1024) // 8KiB
#define ROM_BASE (IO_BASE + IO_SIZE) // 55KiB RAM + 1KiB IO
uint8_t rom[ROM_SIZE];
void initRom(uint8_t *rom);
#endif // ROM_H