Add podman image and README

This commit is contained in:
2025-10-06 18:09:01 +02:00
parent 0dfd6a825f
commit 237ccc261c
6 changed files with 129 additions and 0 deletions

14
example/adder.sv Normal file
View File

@@ -0,0 +1,14 @@
module AC(
input clock,
io_a,
io_b,
io_c,
output io_s,
io_co
);
wire tmp = io_a ^ io_b;
assign io_s = tmp ^ io_c;
assign io_co = io_a & io_b | tmp & io_c;
endmodule