일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 토끼와 경주
- 마법의숲탐색
- 3Dreconstruction
- 슈퍼컴퓨터클러스터
- 포탑부수기
- Calibration
- 코드트리
- 수영대회결승전
- 싸움땅
- 삼성기출
- ARM
- 나무박멸
- 왕실의기사대결
- PQ
- ICER
- 순서대로방문하기
- ros
- DenseDepth
- 백준
- 코드트리빵
- 이진탐색
- 소프티어
- 조합
- 루돌프의반란
- 시뮬레이션
- 마이크로프로세서
- DP
- BFS
- 구현
Archives
- Today
- Total
목록verilog#16bitalu (1)
from palette import colorful_colors

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