Skip to content

Commit

Permalink
Move Mem type to base folder
Browse files Browse the repository at this point in the history
  • Loading branch information
ZehMatt committed Dec 27, 2023
1 parent 028bd1d commit e41cd1c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ set(zasm_SOURCES
"include/zasm/base/immediate.hpp"
"include/zasm/base/instruction.hpp"
"include/zasm/base/label.hpp"
"include/zasm/base/memory.hpp"
"include/zasm/base/meta.hpp"
"include/zasm/base/mode.hpp"
"include/zasm/base/register.hpp"
Expand All @@ -114,7 +115,6 @@ set(zasm_SOURCES
"include/zasm/program/embeddedlabel.hpp"
"include/zasm/program/instruction.hpp"
"include/zasm/program/labeldata.hpp"
"include/zasm/program/memory.hpp"
"include/zasm/program/node.hpp"
"include/zasm/program/observer.hpp"
"include/zasm/program/operand.hpp"
Expand Down
File renamed without changes.
3 changes: 1 addition & 2 deletions include/zasm/program/operand.hpp
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
#pragma once

#include "memory.hpp"

#include <cstdint>
#include <variant>
#include <zasm/base/immediate.hpp>
#include <zasm/base/label.hpp>
#include <zasm/base/memory.hpp>
#include <zasm/base/register.hpp>
#include <zasm/core/enumflags.hpp>

Expand Down
2 changes: 1 addition & 1 deletion include/zasm/x86/memory.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#include "register.hpp"

#include <zasm/program/memory.hpp>
#include <zasm/base/memory.hpp>

namespace zasm::x86
{
Expand Down

0 comments on commit e41cd1c

Please sign in to comment.