From c117deb43b3fa3bd6cc7fc7d79e8444dd0f10931 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Fri, 3 May 2019 14:37:05 -0400 Subject: [PATCH] Introduces a couple of missing #includes. --- Processors/68000/Implementation/68000Implementation.hpp | 2 ++ Processors/68000/Implementation/68000Storage.cpp | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Processors/68000/Implementation/68000Implementation.hpp b/Processors/68000/Implementation/68000Implementation.hpp index 2244a524d..713818999 100644 --- a/Processors/68000/Implementation/68000Implementation.hpp +++ b/Processors/68000/Implementation/68000Implementation.hpp @@ -6,6 +6,8 @@ // Copyright © 2019 Thomas Harte. All rights reserved. // +#include + #define get_ccr() \ ( \ (carry_flag_ ? 0x0001 : 0x0000) | \ diff --git a/Processors/68000/Implementation/68000Storage.cpp b/Processors/68000/Implementation/68000Storage.cpp index 191497ec5..5aa41da8f 100644 --- a/Processors/68000/Implementation/68000Storage.cpp +++ b/Processors/68000/Implementation/68000Storage.cpp @@ -9,8 +9,9 @@ #include "../68000.hpp" #include -#include +#include #include +#include namespace CPU { namespace MC68000 {