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 {