Files
6502PC/inc/rom.h
T
2026-08-31 04:43:52 +02:00

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