summaryrefslogtreecommitdiff
path: root/rtl/core/uarch.sv
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-09-23 23:40:09 -0600
committerAlejandro Soto <alejandro@34project.org>2022-09-23 23:40:09 -0600
commit33e4434a0cb4ad7f15178a013296fb2fa740112e (patch)
tree96937c12dff200a59ed013cd18af16745cd962a8 /rtl/core/uarch.sv
parent7f67a127f20b87c05ea1791321fb7dcc1083ceb1 (diff)
Implement initial fetch stage
Diffstat (limited to 'rtl/core/uarch.sv')
-rw-r--r--rtl/core/uarch.sv7
1 files changed, 7 insertions, 0 deletions
diff --git a/rtl/core/uarch.sv b/rtl/core/uarch.sv
new file mode 100644
index 0000000..a08ddef
--- /dev/null
+++ b/rtl/core/uarch.sv
@@ -0,0 +1,7 @@
+`ifndef CORE_UARCH_SV
+`define CORE_UARCH_SV
+
+// Decodifica como andeq r0, r0, r0
+`define NOP 32'd0
+
+`endif