第1关:Verilog描述电路模块
/********** Begin of blank1 *********/
//请输入电路模块关键字以及模块名字(合法并具有一定含义的标识符,如cir_name、main等)
module cir_name;
/********** End of blank1 *********/
initial //初始化
begin //相当于C语言的 {
$display("hello, welcome to the colorful digital circuits world!");//相当于C语言的printf函数
$finish; //操作完成
end //相当于C语言的 }
/********** Begin of blank2 *********/
//请输入模块结束关键字
endmodule
/********** End of blank2 *********/
第2关:Veril