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).
翻译:
建立一个没有输入只有一个输出的电路。该输出应始终驱动1(或逻辑高)。

把one等于1就可以了。
module top_module( output one );
// Insert your code here
assign one = 1;endmodule

本练习要求使用HDL设计一个不接受任何输入、只有一个输出的电路,这个输出必须始终保持1的状态。提供的代码示例中,模块`top_module`的输出`one`被赋值为1,以实现这一功能。
2874





