module top_module (
input [5:0] y,
input w,
output Y1,
output Y3
);
parameter A=6'b000001,B=6'b000010,C=6'b000100,D=6'b001000,E=6'b010000,F=6'b100000;
assign Y1=y[0]&w;
assign Y3=(y[1] | y[2] | y[4] | y[5])&(~w);
endmodule
Exams/2012 q2b
最新推荐文章于 2024-11-09 00:29:36 发布