Personal Project10 03 프로젝트 결과 및 고찰 (22.06.03) 2023. 6. 27. 02 개발 중간 점검 (22.05.04) 2023. 6. 27. 01 프로젝트 소개 (22.04.06) 2023. 6. 27. 04 4-Bit Adder with Carry-Lookahead 구현 Design a 4-bit adder with carry-lookahead and verify the design with simulation. [4bit_adder_with_CLA.v] // 4-Bit Adder with Carry-Lookahead 정의 module fbit_adder_with_CLA(Sum, C_out, A, B, C_in); // 포트 선언 input [3:0] A, B; // 0~3비트끼지 사용 = 0~15까지 사용 input C_in; output [3:0] Sum; // 0~3비트끼지 사용 = 0~15까지 사용 output C_out; // Carry 포트 선언 wire C1, C2, C3, C4; // Propagation 포트와 Genertation 포트 선언 wire P.. 2023. 6. 21. 이전 1 2 3 다음