Skip to content

Commit

Permalink
Merge pull request #1236 from TomHarte/MissingIncludes
Browse files Browse the repository at this point in the history
Add missing <array> #includes
  • Loading branch information
TomHarte authored Dec 3, 2023
2 parents 881f9bc + 15868ee commit 606a04b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Machines/PCCompatible/DMA.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@

#include "Memory.hpp"

#include <array>

namespace PCCompatible {

enum class AccessResult {
Expand Down
2 changes: 2 additions & 0 deletions Machines/PCCompatible/Memory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@

#include "../../InstructionSets/x86/AccessType.hpp"

#include <array>

namespace PCCompatible {

// TODO: send writes to the ROM area off to nowhere.
Expand Down

0 comments on commit 606a04b

Please sign in to comment.