diff --git a/src/hw/maple/maple.h b/src/hw/maple/maple.h index 9db3c451..90eeac55 100644 --- a/src/hw/maple/maple.h +++ b/src/hw/maple/maple.h @@ -1,6 +1,7 @@ #ifndef MAPLE_H #define MAPLE_H +#include #include "system/keys.h" namespace dreavm { diff --git a/src/hw/sh4/sh4.cc b/src/hw/sh4/sh4.cc index fffddbe7..a69a4981 100644 --- a/src/hw/sh4/sh4.cc +++ b/src/hw/sh4/sh4.cc @@ -6,6 +6,7 @@ using namespace dreavm::core; using namespace dreavm::emu; +using namespace dreavm::hw; using namespace dreavm::hw::sh4; using namespace dreavm::jit; using namespace dreavm::jit::frontend::sh4; diff --git a/test/sh4_test.cc b/test/sh4_test.cc index 550cff5d..69c1770d 100644 --- a/test/sh4_test.cc +++ b/test/sh4_test.cc @@ -1,3 +1,4 @@ +#include #include "sh4_test.h" #include "jit/frontend/sh4/sh4_context.h"