15 lines
241 B
C
15 lines
241 B
C
#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
|