From 4a54fd4018adf931fb436acba2399efc6d6d1176 Mon Sep 17 00:00:00 2001 From: aliaspider Date: Mon, 3 Nov 2014 15:26:54 +0100 Subject: use stdint/stdbool --- source/65c816.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source/65c816.h') diff --git a/source/65c816.h b/source/65c816.h index 851939d..505d185 100644 --- a/source/65c816.h +++ b/source/65c816.h @@ -149,28 +149,28 @@ typedef union #ifdef LSB_FIRST struct { - uint8 l, h; + uint8_t l, h; } B; #else struct { - uint8 h, l; + uint8_t h, l; } B; #endif - uint16 W; + uint16_t W; } pair; typedef struct { - uint8 PB; - uint8 DB; + uint8_t PB; + uint8_t DB; pair P; pair A; pair D; pair S; pair X; pair Y; - uint16 PC; + uint16_t PC; } SRegisters; #endif -- cgit v1.2.3