@@ -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
The note is not visible to the blocked user.