Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions test/au/spsram_256x256.au
Original file line number Diff line number Diff line change
Expand Up @@ -4500,9 +4500,6 @@ module spsram_256x256
// Timing check placeholders (will be replaced during SDF back-annotation)
reg notifier;
specify
// Delay from clk to rd_out
(posedge clk *> rd_out) = (0, 0);

// Timing checks
$width (posedge clk, 0, 0, notifier);
$width (negedge clk, 0, 0, notifier);
Expand Down
3 changes: 0 additions & 3 deletions test/au/spsram_256x32.au
Original file line number Diff line number Diff line change
Expand Up @@ -807,9 +807,6 @@ module spsram_256x32
// Timing check placeholders (will be replaced during SDF back-annotation)
reg notifier;
specify
// Delay from clk to rd_out
(posedge clk *> rd_out) = (0, 0);

// Timing checks
$width (posedge clk, 0, 0, notifier);
$width (negedge clk, 0, 0, notifier);
Expand Down
3 changes: 0 additions & 3 deletions test/au/spsram_256x32_h.au
Original file line number Diff line number Diff line change
Expand Up @@ -814,9 +814,6 @@ module spsram_256x32_h
// Timing check placeholders (will be replaced during SDF back-annotation)
reg notifier;
specify
// Delay from clk to rd_out
(posedge clk *> rd_out) = (0, 0);

// Timing checks
$width (posedge clk, 0, 0, notifier);
$width (negedge clk, 0, 0, notifier);
Expand Down
3 changes: 0 additions & 3 deletions utils/single_port_ram_verilog_exporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,6 @@ def write_timing_check(self, out_fh):
)
out_fh.write(" reg notifier;\n")
out_fh.write(" specify\n")
out_fh.write(f" // Delay from {clk_pin} to {dout_bus}\n")
out_fh.write(f" (posedge {clk_pin} *> {dout_bus}) = (0, 0);\n")
out_fh.write("\n")
out_fh.write(" // Timing checks\n")
out_fh.write(
f" $width (posedge {clk_pin}, 0, 0, notifier);\n"
Expand Down
Loading