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
+18
View File
@@ -0,0 +1,18 @@
#ifndef IO_H
#define IO_H
#include "ram.h"
#include <stdint.h>
#define IO_SIZE (1 * 1024) // 1KiB
#define IO_BASE (RAM_SIZE) // 55KiB RAM
#define SCREEN_ADDRESS 0
#define KEYBOARD_ADDRESS 1
int putChar(uint8_t c);
int getChar(void);
#endif // IO_H