From 09c274d4b2c37d6c23300a0bcf383a71c01dd7db Mon Sep 17 00:00:00 2001 From: kub Date: Fri, 16 Apr 2021 00:26:23 +0200 Subject: [PATCH] 68k, fix musashi support (for debugging only) --- cpu/musashi/m68kcpu.h | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/cpu/musashi/m68kcpu.h b/cpu/musashi/m68kcpu.h index a1dff7de..5eee2b21 100644 --- a/cpu/musashi/m68kcpu.h +++ b/cpu/musashi/m68kcpu.h @@ -27,14 +27,11 @@ #define M68KCPU__HEADER // notaz: something's missing this -#ifndef UINT64 -#define UINT64 unsigned long long -#endif -#ifndef UINT16 -#define UINT32 unsigned int -#define UINT16 unsigned short -#define UINT8 unsigned char -#endif +#include +typedef uint64_t UINT64; +typedef uint32_t UINT32; +typedef uint16_t UINT16; +typedef uint8_t UINT8; #include "m68k.h" #include -- 2.39.2