-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add override targets to Bender.yml * Patch Bender file for fpga target. Looks like `not(synthesys)` automatically overrides the `fpga` target. To have the xilinx-specific cells linked by Bender to Vivado, we need to modify `synthesis` into `asic`. Fixed typo in sram cells. * Fix bender fpga files, add pad_functional_xilinx * remove unneeded files Co-authored-by: Manuel Eggimann <[email protected]> Co-authored-by: Luca Valente <[email protected]>
- Loading branch information
1 parent
68cfe64
commit 8ed192c
Showing
6 changed files
with
68 additions
and
171 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
// Copyright 2018 ETH Zurich and University of Bologna. | ||
// Copyright and related rights are licensed under the Solderpad Hardware | ||
// License, Version 0.51 (the "License"); you may not use this file except in | ||
// compliance with the License. You may obtain a copy of the License at | ||
// http://solderpad.org/licenses/SHL-0.51. Unless required by applicable law | ||
// or agreed to in writing, software, hardware and materials distributed under | ||
// this 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. | ||
|
||
|
||
module pad_functional_pd | ||
( | ||
input logic OEN, | ||
input logic I, | ||
output logic O, | ||
input logic PEN, | ||
inout logic PAD | ||
); | ||
|
||
(* PULLDOWN = "YES" *) | ||
IOBUF iobuf_i ( | ||
.T ( OEN ), | ||
.I ( I ), | ||
.O ( O ), | ||
.IO( PAD ) | ||
); | ||
|
||
endmodule | ||
|
||
module pad_functional_pu | ||
( | ||
input logic OEN, | ||
input logic I, | ||
output logic O, | ||
input logic PEN, | ||
inout logic PAD | ||
); | ||
|
||
(* PULLUP = "YES" *) | ||
IOBUF iobuf_i ( | ||
.T ( OEN ), | ||
.I ( I ), | ||
.O ( O ), | ||
.IO( PAD ) | ||
); | ||
|
||
endmodule |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters