Mt2015-q4a

Mt2015-q4a

Taken from 2015 midterm question 4

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

solution

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


Mt2015-q4a
http://456-xiao.github.io/2024/09/07/Mt2015-q4a/
作者
xyh
发布于
2024年9月7日
许可协议