You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
145 B
10 lines
145 B
4 years ago
|
module top(
|
||
|
input [8:1] SW,
|
||
|
output [14:3] D
|
||
|
);
|
||
|
|
||
|
assign D[12:5] = ~ SW[8:1];
|
||
|
assign D[14] = (SW[1] & SW[2] | SW[3]) | SW[4];
|
||
|
|
||
|
|
||
|
endmodule
|