mirror of
https://github.com/jborza/emu6502.git
synced 2024-11-18 04:08:33 +00:00
6 lines
149 B
C
6 lines
149 B
C
#pragma once
|
|
#include <stdint.h>
|
|
//typedef unsigned __int8 uint8_t;
|
|
//typedef unsigned __int16 uint16_t;
|
|
typedef uint8_t byte;
|
|
typedef uint16_t word; |