일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 삼성기출
- dfs
- 조합
- 포탑부수기
- 구현
- BFS
- DP
- 코드트리빵
- 토끼와 경주
- 루돌프의반란
- 3Dreconstruction
- 시뮬레이션
- DenseDepth
- ISER
- 싸움땅
- ARM
- 슈퍼컴퓨터클러스터
- 순서대로방문하기
- 소프티어
- 왕실의기사대결
- 백준
- 마법의숲탐색
- 마이크로프로세서
- 수영대회결승전
- Calibration
- 나무박멸
- ros
- 이진탐색
- ICER
- 코드트리
Archives
- Today
- Total
목록verilog#16bitalu (1)
from palette import colorful_colors
[verilog] 16bit ALU구현
add, sub, mux, div, mux41 모듈을 각각 구현하고 최종적으로 alu16 모듈에 합친 파일. add, sub, mux, div, mix41이 alu16의 하위 모듈에 해당한다. module add(out, a, b);//adder 모듈 input [15:0] a, b; output [15:0] out; assign out = a + b; endmodule module sub(out, a, b); //subtractor 모듈 input [15:0] a, b; output [15:0] out; assign out = a - b; endmodule module mul(out, a, b);//multiplyer 모듈 input [15:0] a, b; output [15:0] out; assign..
EE 학부과목/verilog
2023. 3. 13. 14:34