14 lines
246 B
C
14 lines
246 B
C
//
|
|
// Created by william on 12/26/23.
|
|
//
|
|
|
|
#ifndef NESEMULATOR_TYPES_H
|
|
#define NESEMULATOR_TYPES_H
|
|
|
|
typedef unsigned char byte;
|
|
typedef unsigned short address;
|
|
typedef unsigned short word;
|
|
typedef unsigned int pixel;
|
|
|
|
#endif //NESEMULATOR_TYPES_H
|