19 lines
327 B
C
19 lines
327 B
C
//
|
|
// Created by william on 12/26/23.
|
|
//
|
|
|
|
#ifndef NESEMULATOR_TYPES_H
|
|
#define NESEMULATOR_TYPES_H
|
|
|
|
#define RAM_SIZE 0xffff
|
|
#define VRAM_SIZE 0x4000
|
|
|
|
typedef unsigned char byte;
|
|
typedef unsigned short address;
|
|
typedef unsigned short word;
|
|
|
|
typedef byte ram[RAM_SIZE];
|
|
typedef byte vram[VRAM_SIZE];
|
|
|
|
#endif //NESEMULATOR_TYPES_H
|