1
0
mirror of https://github.com/jborza/emu6502.git synced 2024-06-01 19:41:29 +00:00
emu6502/types.h
jborza 2ddcf62212 fixed zero flag handling in LDA, LDX, LDY
added BEQ+test
split memory function to a separate module
2019-04-27 12:43:15 +02:00

7 lines
177 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;
typedef int8_t signed_byte;