Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
12
Task/Logical-operations/Verilog/logical-operations.v
Normal file
12
Task/Logical-operations/Verilog/logical-operations.v
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
module main;
|
||||
integer a, b;
|
||||
|
||||
initial begin
|
||||
a = 1; //true
|
||||
b = 0; //false
|
||||
$display(a && b); //AND
|
||||
$display(a || b); //OR
|
||||
$display(!a); //NOT
|
||||
$finish ;
|
||||
end
|
||||
endmodule
|
||||
Loading…
Add table
Add a link
Reference in a new issue