emu6502/types.h

7 lines
177 B
C
Raw Permalink Normal View History

2019-04-13 08:28:57 +00:00
#pragma once
2019-04-14 11:24:02 +00:00
#include <stdint.h>
//typedef unsigned __int8 uint8_t;
//typedef unsigned __int16 uint16_t;
2019-04-13 08:28:57 +00:00
typedef uint8_t byte;
typedef uint16_t word;
typedef int8_t signed_byte;