raw verilog output from TC 'works' but the SoC seems to not work correctly.

This commit is contained in:
2025-07-15 16:59:23 -04:00
parent 42ad32b0cc
commit dae42f61e7
49 changed files with 7415 additions and 8 deletions

View File

@@ -0,0 +1,10 @@
module TC_Shl (in, shift, out);
parameter UUID = 0;
parameter NAME = "";
parameter BIT_WIDTH = 1;
input [BIT_WIDTH-1:0] in;
input [7:0] shift;
output [BIT_WIDTH-1:0] out;
assign out = in << shift;
endmodule