专栏前言
本专栏的内容主要是记录本人学习Verilog过程中的一些知识点,刷题网站用的是牛客网
`timescale 1ns/1ns
module huawei6(
input wire clk0 ,
input wire clk1 ,
input wire rst ,
input wire sel ,
output reg clk_out
);
//*************code***********//
reg q0, q1 ;
always @ (negedge clk0 or negedge rst)
if (!rst) q0 <= 0 ;
else q0 <= ~sel & ~q1 ;
always @ (negedge clk1 or negedge rst)
if (!rst) q1 <= 0 ;
else q1 <= sel & ~q0 ;
always @ (*)
if (!rst) clk_out <= 0 ;
else clk_out = (q0 & clk0) | (q1 & clk1) ;
//*************code***********//
endmodule