module editorReady
Simulation
Examples
Signals
Syntax
wire name;reg name = 0;assign out = a & b;always @(posedge clk) {if (cond) reg = val;
else reg = val2;
}
Operators: & | ^ ~ + - == != < >
Write Verilog-like HDL, simulate combinational + sequential logic, view waveforms
wire name;reg name = 0;assign out = a & b;always @(posedge clk) {