Fix run on linux
This commit is contained in:
@@ -1,14 +1,12 @@
|
||||
#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
|
||||
#define ROM_SIZE (8 * 1024) // 8KiB
|
||||
#define ROM_BASE (56 * 1024) // 55KiB RAM + 1KiB IO, hard coded
|
||||
|
||||
uint8_t rom[ROM_SIZE];
|
||||
extern uint8_t rom[ROM_SIZE];
|
||||
|
||||
void initRom(uint8_t *rom);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user