Simple circuit A (Mt2015 q4a)

2023. 6. 12. 15:17FPGA/HDLBits

728x90

Problem Statement

Taken from 2015 midterm question 4

Module A is supposed to implement the function z = (x^y) & x. Implement this module.

module top_module (input x, input y, output z);
    assign z = (x^y) & x;
endmodule

'FPGA > HDLBits' 카테고리의 다른 글

Combine circuits A and B (Mt2015 q4)  (0) 2023.06.12
Simple circuit B (Mt2015 q4b)  (0) 2023.06.12
Two-bit equality (Mt2015 eq2)  (0) 2023.06.12
Truthtable1  (0) 2023.06.12
7420  (0) 2023.06.12