nand2/02_Boolean_Arithmetic/FullAdder.v
Michael Schröder 971b323822 added v2.0
2023-01-11 23:04:57 +01:00

17 lines
275 B
Verilog

/**
* Computes the sum of three bits.
*/
`default_nettype none
module FullAdder(
input a, //1-bit input
input b, //1-bit input
input c, //1-bit input
output sum, //Right bit of a + b + c
output carry //Left bit of a + b + c
);
// Put your code here:
endmodule