From 37c46d579de30662542ee48725e86b981d2696b7 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sun, 3 Dec 2023 18:06:09 -0500 Subject: [PATCH] Add missing array imports. --- Machines/PCCompatible/DMA.hpp | 2 ++ Machines/PCCompatible/Memory.hpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Machines/PCCompatible/DMA.hpp b/Machines/PCCompatible/DMA.hpp index 73a4ff487..44e5aa67d 100644 --- a/Machines/PCCompatible/DMA.hpp +++ b/Machines/PCCompatible/DMA.hpp @@ -13,6 +13,8 @@ #include "Memory.hpp" +#include + namespace PCCompatible { enum class AccessResult { diff --git a/Machines/PCCompatible/Memory.hpp b/Machines/PCCompatible/Memory.hpp index 263617b9e..7f9496774 100644 --- a/Machines/PCCompatible/Memory.hpp +++ b/Machines/PCCompatible/Memory.hpp @@ -14,6 +14,8 @@ #include "../../InstructionSets/x86/AccessType.hpp" +#include + namespace PCCompatible { // TODO: send writes to the ROM area off to nowhere.