일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 구현
- 순서대로방문하기
- ARM
- 마법의숲탐색
- 코드트리빵
- 코드트리
- ICER
- 포탑부수기
- 슈퍼컴퓨터클러스터
- ISER
- DP
- DenseDepth
- 소프티어
- ros
- 루돌프의반란
- 삼성기출
- 나무박멸
- 시뮬레이션
- 조합
- 이진탐색
- BFS
- 수영대회결승전
- Calibration
- 백준
- 싸움땅
- 토끼와 경주
- 3Dreconstruction
- 왕실의기사대결
- 마이크로프로세서
Archives
- Today
- Total
from palette import colorful_colors
[verilog] inverter(인버터), bufer(버퍼) 본문
좀 더 자세한 설명이 필요하다면 https://colorful-palette.tistory.com/24 참고!
inv.v파일
//인버터 모듈
module inv(a,z);
input a;
output z;
assign z = ~a;
endmodule
//인버터를 이용한 버퍼 모듈
module buffer1(a, z) ;
input a;
output z;
inv u1(a, b);
inv u2(b, z);
endmodule
inv_tb.v 파일
`timescale 1ns/1ns
module buffuer_tb();
reg a;
wire z;
buffer u1(a,z);
initial begin
a = 0;
#100 $finish;
end
always begin
#1 a = ~a;
end
initial begin
$dumpfile("output.vcd");
$dumpvars(0);
end
endmodule
'EE 학부과목 > verilog' 카테고리의 다른 글
[verilog] 1:4 DEMUX 구현 (디멀티플렉서, Demultiplexer) (0) | 2023.03.13 |
---|---|
[verilog] 4:1 MUX 구현 (멀티플렉서, multiplexer) (0) | 2023.03.13 |
[verilog] Full Adder, 4bit Adder 구현 (2) | 2023.03.13 |
[verilog] NAND 구현 (0) | 2023.03.13 |
[verilog] 논리회로설계의 시작, verilog 설치와 문법 기초 (0) | 2023.03.13 |