Exams/m2014 q3

From HDLBits

Consider the function f shown in the Karnaugh map below.

Implement this function. d is don't-care, which means you may choose to output whatever value is convenient.


Module Declaration

module top_module (
    input [4:1] x, 
    output f );

Write your solution here

x
 
1
module top_module (
2
    input [4:1] x, 
3
    output f );
4
5
endmodule
6
Upload a source file...