모든 HDLBits 포스팅은 Ligth Theme을 권장합니다.

(왼쪽 메뉴 하단)

 

https://hdlbits.01xz.net/wiki/Main_Page

 

HDLBits

HDLBits — Verilog Practice HDLBits is a collection of small circuit design exercises for practicing digital hardware design using Verilog Hardware Description Language (HDL). Earlier problems follow a tutorial style, while later problems will increasingl

hdlbits.01xz.net

 

 

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을 권장합니다.