NES emulator in progress
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
nesem/common.h

10 lines
247 B

#ifndef COMMONH
#include <stdio.h>
#include <stdlib.h>
typedef unsigned char byte; //8bit (byte) variable type
typedef unsigned short word; //16bit (2byte) variable type
typedef enum {false, true} bool;
#endif
#define COMMONH