Примеры кода для A-C4E6E10.
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.
|
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 |