summaryrefslogtreecommitdiff
path: root/rtl/core/decode/ldst/addr.sv
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2024-01-21 06:23:46 -0600
committerAlejandro Soto <alejandro@34project.org>2024-02-20 11:11:17 -0600
commitf3b18ead59ae02f95dabbf0a1dea40873a816975 (patch)
tree8979e50f2a37f66a4cd27e937b480efe60d72cf7 /rtl/core/decode/ldst/addr.sv
parenta8bc5a353ea997f73209b39377ee15a73e471237 (diff)
rtl: refactor filenames and directory hierarchy
Diffstat (limited to 'rtl/core/decode/ldst/addr.sv')
-rw-r--r--rtl/core/decode/ldst/addr.sv15
1 files changed, 0 insertions, 15 deletions
diff --git a/rtl/core/decode/ldst/addr.sv b/rtl/core/decode/ldst/addr.sv
deleted file mode 100644
index 345f0ea..0000000
--- a/rtl/core/decode/ldst/addr.sv
+++ /dev/null
@@ -1,15 +0,0 @@
-`include "core/uarch.sv"
-
-module core_decode_ldst_addr
-(
- input ldst_decode ldst,
-
- output data_decode alu
-);
-
- assign alu.op = ldst.increment ? `ALU_ADD : `ALU_SUB;
- assign alu.rn = ldst.rn;
- assign alu.rd = ldst.rd;
- assign alu.uses_rn = 1;
-
-endmodule