diff options
author | 2019-06-12 16:58:19 +0200 | |
---|---|---|
committer | 2019-06-12 16:58:19 +0200 | |
commit | d37497735147a7cd08c6b77483ecd6f155f838ff (patch) | |
tree | 59e552d6e5e89750db8a7a003a539b76417a071d | |
parent | 8c80fc4b4367c69bf0daea3c233f04e828b604d5 (diff) | |
parent | 46599c9712d1b7f706ac36228a8ca761c4b32ea4 (diff) |
Merge pull request #5225 from MoochMcGee/i386-work
Fix up some commented out testing code (nw)
-rw-r--r-- | src/devices/cpu/i386/cache.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/devices/cpu/i386/cache.h b/src/devices/cpu/i386/cache.h index a04f2cacf2e..7dc2e6ad45c 100644 --- a/src/devices/cpu/i386/cache.h +++ b/src/devices/cpu/i386/cache.h @@ -8,9 +8,10 @@ /* To test it outside of Mame #include <cstdlib> +#include <cstdint> -typedef unsigned char u8; -typedef unsigned int u32; +typedef uint8_t u8; +typedef uint32_t u32; */ enum { |