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/alu/orr.sv | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 rtl/core/alu/orr.sv (limited to 'rtl/core/alu/orr.sv') diff --git a/rtl/core/alu/orr.sv b/rtl/core/alu/orr.sv deleted file mode 100644 index 1ee87c2..0000000 --- a/rtl/core/alu/orr.sv +++ /dev/null @@ -1,12 +0,0 @@ -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