python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How does SystemVerilog compiler knows to separate two arguments in a macro?
I have this macro:
`define do_code(DO_SOETHING, ID) \
fork \
begin \
``DO_SOMETHING`` \
end \
begin \
$display("%s",ID.name()); \
end \
...
NimrodB
Votes: 0
Answers: 1
Gate-level timing checks in SVA
I need to check the value of a signal after a certain amount of time a clock edge occurs. For example, I want to check that if signal b asserts to high 1ps after posedge clock occurs.
Does SVA provide...

yildizabdullah
Votes: 0
Answers: 1
Shortening a dist style constraint in SystemVerilog
I have a constraint of the form:
s dist {0:= 20, 1:= 25, 2:= 30, <many more, possibly hundreds>};
Instead of writing down the constraint this way, I found in my application the RHS (i.e. the we...
sm535
Votes: 0
Answers: 1
Missing connection for port 'v1'
I'm working on a systemVerilog code, where a lookup value is being compared to 8 registers of the same bit size, it should give valid 1 if one of the registers matches the the lookup val. everything c...
user18676558
Votes: 0
Answers: 1