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

5 lines
161 B

#pragma once
typedef unsigned char byte; //8bit (byte) variable type
typedef unsigned short word; //16bit (2byte) variable type
typedef enum {false, true} bool;