Step_one
Problem Statement
We're going to start with a small bit of HDL to get familiar with the interface used by HDLBits. Here's the description of the circuit you need to build for this exercise:
Build a circuit with no inputs and one output. That output should always drive 1 (or logic high).
Tip
We want to assign 1 to the output one.
Official Solution
My Solution
Note
- 在赋值的时候可以写明数值的位宽、基数和常量,例如本题中用
1'b1
替换1
。