Exams/m2014 q4d

From HDLBits

Implement the following circuit:

Module Declaration

module top_module (
    input clk,
    input in, 
    output out);

Write your solution here

x
 
1
module top_module (
2
    input clk,
3
    input in, 
4
    output out);
5
6
endmodule
7
Upload a source file...