This commit is contained in:
2026-07-09 22:48:08 +02:00
parent 50dbc682d9
commit 49c9e6315b
56 changed files with 309162 additions and 2007410 deletions

18
RTL/UartClockEnable.sv Normal file
View File

@ -0,0 +1,18 @@
// Generated by CIRCT firtool-1.139.0
module UartClockEnable(
input clock,
reset,
output io_output_ce
);
reg [31:0] counter;
wire [32:0] sum = {1'h0, counter} + 33'h96FEB5;
always @(posedge clock) begin
if (reset)
counter <= 32'h0;
else
counter <= sum[31:0];
end // always @(posedge)
assign io_output_ce = sum[32];
endmodule