ysyx-workbench/npc/vsrc/example.v
tracer-ysyx df992995ca > 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
2023-12-23 18:31:48 +08:00

7 lines
No EOL
77 B
Verilog

module top(
input a,
input b,
output f
);
assign f = a ^ b;
endmodule