일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 백준
- 왕실의기사대결
- 포탑부수기
- ARM
- 삼성기출
- 소프티어
- 슈퍼컴퓨터클러스터
- 이진탐색
- 루돌프의반란
- ros
- ICER
- BFS
- 마법의숲탐색
- 수영대회결승전
- 조합
- 순서대로방문하기
- DenseDepth
- Calibration
- 3Dreconstruction
- 마이크로프로세서
- 싸움땅
- ISER
- 구현
- 코드트리빵
- 코드트리
- dfs
- DP
- 시뮬레이션
- 토끼와 경주
- 나무박멸
Archives
- Today
- Total
목록verilog#nand (1)
from palette import colorful_colors
[verilog] NAND 구현
nand.vmodule NANDgate(in1, in2, out1); input in1; input in2; output out1; assign out1 = ~(in1 & in2); endmodule nand_tb.v`timescale 1ns/1ns module NANDgate_tb(); reg a; reg b; wire out1; NANDgate u1 (a, b,out1); initial begin a = 0 ; b = 0 ; #100 $finish; end always begin #5 a = ~a; end always begin #10 b = ~b; end /* 위 always문 이용 대신 initial문 안에 a = 0; b = 0 #5; a = 1; b = 0 #5; a = 0; b = 1 #5;..
EE 학부과목/verilog
2023. 3. 13. 12:02