Kmap2

From HDLBits

kmap1Previous
Nextkmap3

Implement the circuit described by the Karnaugh map below.


Try to simplify the k-map before coding it. Try both product-of-sums and sum-of-products forms. We can't check whether you have the optimal simplification of the k-map. But we can check if your reduction is equivalent, and we can check whether you can translate a k-map into a circuit.


Module Declaration

module top_module(
    input a,
    input b,
    input c,
    input d,
    output out  ); 

Write your solution here

x
 
1
module top_module(
2
    input a,
3
    input b,
4
    input c,
5
    input d,
6
    output out  ); 
7
8
endmodule
9
Upload a source file...