mirror of
https://github.com/jborza/emu6502.git
synced 2024-11-22 14:32:27 +00:00
5 lines
125 B
C
5 lines
125 B
C
#pragma once
|
|
typedef unsigned __int8 uint8_t;
|
|
typedef unsigned __int16 uint16_t;
|
|
typedef uint8_t byte;
|
|
typedef uint16_t word; |