blob: cfea2286981371c636ac955ca5793558f1c3156c [file] [log] [blame]
// Copyright 2022 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
`default_nettype none
module tiny_user_project(
input [`MPRJ_IO_PADS-1:0] io_in,
output [`MPRJ_IO_PADS-1:0] io_out,
output [`MPRJ_IO_PADS-1:0] io_oeb
);
// pass input and output pins defined in user_defines.v
user_module mod (
.io_in (io_in[19:12]),
.io_out(io_out[27:20])
);
// all output enabled
assign io_oeb[27:20] = 8'b0;
endmodule // tiny_user_project
`default_nettype wire