nesemu/include/types.h

14 lines
246 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
typedef unsigned char byte;
typedef unsigned short address;
typedef unsigned short word;
2024-08-17 17:38:15 -04:00
typedef unsigned int pixel;
2024-01-06 14:27:09 -05:00
#endif //NESEMULATOR_TYPES_H