Next-Gen EDA Workbench to
Compile SystemVerilog directly to interactive gate schematics with automated Manhattan routing, bus collapsing, and semantic LOD zoom.
input logic clk, rst_n,
input logic [7:0] data_in,
output logic [7:0] accum_out
);
// Feedback accumulator loop
always_ff @(posedge clk) begin
accum_out <= accum_out + data_in;
end
endmodule