The Wayback Machine - https://web.archive.org/web/20220512114657/https://github.com/topics/compilers
Skip to content
#

compilers

Here are 826 public repositories matching this topic...

verilator
qrqiuren
qrqiuren commented Apr 28, 2021

Thanks for taking the time to report this.

What would you like added/supported?

// File: dly_warning.sv

// verilator lint_off ASSIGNDLY

module dly_warning (
    input logic a_in,
    input logic [2:0] delaycw,

    output logic a_out
);

timeunit 1ns;
timeprecision 1ns;

time dly;

assign dly = 5 * delaycw;
assign #dly a_out = a_in;     // Warning ASS
good first issue area: lint status: ready

Improve this page

Add a description, image, and links to the compilers topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the compilers topic, visit your repo's landing page and select "manage topics."

Learn more