Exams/m2014 q3

From HDLBits

Consider the function f shown in the Karnaugh map below.

Exams m2014q3.png

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

Upload a source file...