> sim RTL

ysyx_22040000 李心杨
Linux calcite 6.1.65 #1-NixOS SMP PREEMPT_DYNAMIC Sun Dec  3 06:32:13 UTC 2023 x86_64 GNU/Linux
 18:31:48  up  21:29,  2 users,  load average: 1.18, 0.83, 0.63
This commit is contained in:
tracer-ysyx 2023-12-23 18:31:48 +08:00 committed by xinyangli
parent b66f0c6d56
commit df992995ca
11 changed files with 224 additions and 16 deletions

View file

@ -1,3 +1,7 @@
module our;
initial begin $display("Hello World"); $finish; end
module top(
input a,
input b,
output f
);
assign f = a ^ b;
endmodule