Paste your Verilog RTL — synthesize with Yosys and run OpenROAD floorplan on the SkyWater SKY130 PDK. Get die area, core area, utilisation and row count in seconds.
Three backend steps run on each request — all open-source tools, no proprietary EDA licenses required.
initialize_floorplan and report_design_area to return the physical dimensions.A synchronous 4-bit counter with active-high reset. A typical small design to test the flow — synthesises to ~12 standard cells.
module counter(
input wire clk, rst,
output reg [3:0] count
);
always @(posedge clk or posedge rst)
if (rst) count <= 4'd0;
else count <= count + 1;
endmodule