nesemu/include/types.h

19 lines
335 B
C
Raw Normal View History

2024-01-06 14:27:09 -05:00
//
// Created by william on 12/26/23.
//
#ifndef NESEMULATOR_TYPES_H
#define NESEMULATOR_TYPES_H
2024-05-23 23:52:04 -04:00
//#define RAM_SIZE 0xffff
//#define VRAM_SIZE 0x4000
2024-01-06 14:27:09 -05:00
typedef unsigned char byte;
typedef unsigned short address;
typedef unsigned short word;
2024-05-06 20:23:44 -04:00
//typedef byte ram[RAM_SIZE];
2024-05-23 23:52:04 -04:00
//typedef byte vram[VRAM_SIZE];
2024-01-06 14:27:09 -05:00
#endif //NESEMULATOR_TYPES_H