본문으로 건너뛰기
🏢 About Us
📘 Wiki
🛠️ Tools
Waveform Editor
Verilog Analyzer
Verilog Simulator
🔗 Links
🧩 SGDH Git
💬 SGDH Community
🎬 SGDH YouTube
📧 Contact us
KO
KO
EN
ctrl
K
회원가입
로그인
Verilog Simulator — SGDH
tb.v
workspace
›
tb.v
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// testbench top
`timescale
1ns
/
1ps
module
tb
;
logic
clk
;
logic
rst_n
;
dut
u_dut
(
.*
)
;
initial
clk
=
0
;
always
#
5
clk
=
~
clk
;
initial
begin
rst_n
=
0
;
repeat
(
2
)
@
(
posedge
clk
)
;
rst_n
=
1
;
@
(
posedge
clk
)
;
터미널
출력
문제
TERMINAL
— 시뮬 실행 및 로그 출력 영역입니다.
줄 1, 열 1
공백 2
UTF-8
LF
Verilog
SGDH