summaryrefslogtreecommitdiff
path: root/aisa/aisa.cpp
diff options
context:
space:
mode:
authorJulian Blake Kongslie2022-07-02 13:45:09 -0700
committerJulian Blake Kongslie2022-07-02 13:45:09 -0700
commitc72951a36d6cb9775dc1ecd9bc26bc13e796f10c (patch)
tree5a8fe196beba5c7c674d1b3d627c9a0beac849f5 /aisa/aisa.cpp
parentTrivial code reorg. (diff)
downloadissim-c72951a36d6cb9775dc1ecd9bc26bc13e796f10c.tar.xz
Dropping the async interface, and adding some real uarch.
Diffstat (limited to '')
-rw-r--r--aisa/aisa.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/aisa/aisa.cpp b/aisa/aisa.cpp
index 811c882..8c8cd1e 100644
--- a/aisa/aisa.cpp
+++ b/aisa/aisa.cpp
@@ -6,6 +6,12 @@
6 6
7namespace aisa { 7namespace aisa {
8 8
9 ISA::~ISA() { }
10
11 Task::~Task() { }
12
13 Step::~Step() { }
14
9 std::optional<std::pair<std::unique_ptr<const Step>, regval_t>> Task::step(regval_t environment_val) const { return {}; } 15 std::optional<std::pair<std::unique_ptr<const Step>, regval_t>> Task::step(regval_t environment_val) const { return {}; }
10 16
11 MemInfo Step::meminfo(const Wires &wires) const { return {}; } 17 MemInfo Step::meminfo(const Wires &wires) const { return {}; }