summaryrefslogtreecommitdiff
path: root/inc/instr.h
diff options
context:
space:
mode:
authorbd <bdunaisky@umass.edu>2025-04-02 04:05:18 +0000
committerGitHub <noreply@github.com>2025-04-02 04:05:18 +0000
commit9fb95d655393777dde5929182f94de36f903821d (patch)
tree4462f35895737460a01fab891a15f87aba2efb70 /inc/instr.h
parent24f0bd8af57381ab3112b5774d4ad23ac80f0718 (diff)
parent3eeb345d673bee6d62b04fc8a8a95ab822dc1e45 (diff)
Merge pull request #46 from bdunahu/bdunahu
Ensure all stages only do work if they are not 'OK'
Diffstat (limited to 'inc/instr.h')
-rw-r--r--inc/instr.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/inc/instr.h b/inc/instr.h
index d17613d..2b1807a 100644
--- a/inc/instr.h
+++ b/inc/instr.h
@@ -1,7 +1,6 @@
#ifndef INSTR_H
#define INSTR_H
#include <functional>
-#include <iostream>
#include <unordered_map>
enum Mnemonic {
@@ -45,12 +44,7 @@ enum Mnemonic {
NOP,
};
-enum Type {
- R,
- I,
- J,
- INV
-};
+enum Type { R, I, J, INV };
namespace instr
{