Last updated 1 year, 7 months ago
Doubt Group :- https://t.me/atozquantbatch2abhinaymaths
Main channel :- https://t.me/abhinaymaths
Welcome to PlaisirLanmo🥇
Debat sentimental, Éducation sexuelle, Pensée positive 🔞 Films & série amoureuse
@PlaisirLanmou ❤️ sur WhatsApp : https://whatsapp.com/channel/0029VaCa02O5fM5e6itNuK2s
facebook.com/Plaisirlanmou
Youtube.com/plaisirlanmou
How many lines does one need to break VCS? Not much.
```
module tb;
logic a = 0;
logic b = 0;
logic bb = 0;
logic [1:0] c;
function automatic logic foo(logic x, logic y);
return x && y;
endfunction
always_comb begin
c = 0;
unique0 if (a) begin
c = 1;
end else if (foo(b, bb)) begin
c = 2;
end else begin
c = 3;
end
end
initial begin
#1;
a <= 1;
b <= 0;
bb <= 0;
#1;
a <= 0;
b <= 1;
bb <= 1;
#1;
end
initial begin
$monitor("%t : %b %b %b %0d", $time(), a, b, bb, c);
end
endmodule
```
Output:
```
0 : 0 0 0 0
1 : 1 0 0 1
2 : 0 1 1 0
```
The frequency of my posts is only slightly higher than the frequency of snowfalls in Barcelona. A half-joking experiment on what happens if you put an AI into the technical interview.
Last updated 1 year, 7 months ago
Doubt Group :- https://t.me/atozquantbatch2abhinaymaths
Main channel :- https://t.me/abhinaymaths
Welcome to PlaisirLanmo🥇
Debat sentimental, Éducation sexuelle, Pensée positive 🔞 Films & série amoureuse
@PlaisirLanmou ❤️ sur WhatsApp : https://whatsapp.com/channel/0029VaCa02O5fM5e6itNuK2s
facebook.com/Plaisirlanmou
Youtube.com/plaisirlanmou