13 lines
227 B
C
13 lines
227 B
C
#ifndef ROM_H
|
|
#define ROM_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#define ROM_SIZE (8 * 1024) // 8KiB
|
|
#define ROM_BASE (56 * 1024) // 55KiB RAM + 1KiB IO, hard coded
|
|
|
|
extern uint8_t rom[ROM_SIZE];
|
|
|
|
void initRom(uint8_t *rom);
|
|
|
|
#endif // ROM_H
|