From f3b18ead59ae02f95dabbf0a1dea40873a816975 Mon Sep 17 00:00:00 2001 From: Alejandro Soto Date: Sun, 21 Jan 2024 06:23:46 -0600 Subject: rtl: refactor filenames and directory hierarchy --- rtl/core/core_alu_orr.sv | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 rtl/core/core_alu_orr.sv (limited to 'rtl/core/core_alu_orr.sv') diff --git a/rtl/core/core_alu_orr.sv b/rtl/core/core_alu_orr.sv new file mode 100644 index 0000000..1ee87c2 --- /dev/null +++ b/rtl/core/core_alu_orr.sv @@ -0,0 +1,12 @@ +module core_alu_orr +#(parameter W=16) +( + input logic[W - 1:0] a, + b, + + output logic[W - 1:0] q +); + + assign q = a | b; + +endmodule -- cgit v1.2.3