모든 HDLBits 포스팅은 Ligth Theme을 권장합니다.
(왼쪽 메뉴 하단)
https://hdlbits.01xz.net/wiki/Main_Page
HDLBits를 아시나요?
Backjoon 이나 프로그래머스같은 Oneline HDL Code Test Site입니다.
오늘부터 차근차근 Solution과 풀이를 적어보려고 합니다.
문제는 Problem Set >> Browse Problem Set
Getting Started
Build a circuit with no inputs and one output. That output should always drive 1 (or logic high).
입력이 없고 출력이 하나인 회로를 구축합니다. 그 출력은 항상 1(또는 Logic high)이어야 합니다.
Solution ↓
더보기
module top_module( output one );
// Insert your code here
assign one = 1;
endmodule
ZERO
Build a circuit with no inputs and one output that outputs a constant 0
입력이 없고 출력이 일정한 0을 출력하는 회로를 구축합니다
Solution ↓
더보기
module top_module(zero);// Module body starts after semicolon
output zero;
endmodule
공부 기록용이지만 여기에는 정답만 올리겠습니다. 솔루션용으로 보셔도 됩니다.
모든 HDLBIts 포스팅은 Light Theme을 권장합니다.
'Circuit Design > 🚀HDLBits' 카테고리의 다른 글
[HDLBits] 5. Verilog Language - More Verilog Features (0) | 2024.07.11 |
---|---|
[HDLBits] 4. Verilog Language - Procedures (0) | 2024.07.08 |
[HDLBits] 3. Verilog Language - Modules: Hiearch (0) | 2024.07.07 |
[HDLBits] 2. Verilog Language - Vectors (0) | 2024.07.07 |
[HDLBits] 1. Verilog Language - Basics (0) | 2024.07.07 |