Files
6502PC/inc/rom.h
T
2026-08-26 23:09:04 +02:00

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