netlist-verilog icon indicating copy to clipboard operation
netlist-verilog copied to clipboard

Level-triggered process 'Event's

Open garrinkimmell opened this issue 14 years ago • 0 comments

I want to be able to generate asynchronous resets, which in VHDL would look like:

process foo(clk,rst) is begin if (rst = '1') then blah elsif rising_edge(clk) then blah end if; end process;

But currently the 'Event' structure only allows for edge-triggered values. I realize 'level-triggered' and 'event' are kind of non-compatible, but I would like to see how we should do this using Netlist.

garrinkimmell avatar Mar 25 '10 19:03 garrinkimmell