-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fixing testbnench example, pin order was reversed from physical placement order.
- Loading branch information
Showing
3 changed files
with
32 additions
and
29 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,27 @@ | ||
/***************************************************************************** | ||
* Function: Padcell Enumeration | ||
* Function: Padring Generator Enumeration | ||
* Copyright: Lambda Project Authors. All rights Reserved. | ||
* License: MIT (see LICENSE file in Lambda repository) | ||
****************************************************************************/ | ||
|
||
// signal | ||
localparam [7:0] LA_BIDIR = 8'h00; | ||
localparam [7:0] LA_INPUT = 8'h01; | ||
localparam [7:0] LA_OUTPUT = 8'h02; | ||
localparam [7:0] LA_ANALOG = 8'h03; | ||
localparam [7:0] LA_XTAL = 8'h04; | ||
localparam [7:0] LA_RXDIFF = 8'h05; | ||
localparam [7:0] LA_TXDIFF = 8'h06; | ||
// NULL (unused, catchall) | ||
localparam [7:0] NULL = 8'h00; | ||
|
||
// signals | ||
localparam [7:0] LA_BIDIR = 8'h01; | ||
localparam [7:0] LA_INPUT = 8'h02; | ||
localparam [7:0] LA_OUTPUT = 8'h03; | ||
localparam [7:0] LA_ANALOG = 8'h04; | ||
localparam [7:0] LA_XTAL = 8'h05; | ||
localparam [7:0] LA_RXDIFF = 8'h06; | ||
localparam [7:0] LA_TXDIFF = 8'h07; | ||
|
||
// supplies | ||
localparam [7:0] LA_VDDIO = 8'h10; | ||
localparam [7:0] LA_VSSIO = 8'h11; | ||
// power | ||
localparam [7:0] LA_VDD = 8'h12; | ||
localparam [7:0] LA_VSS = 8'h13; | ||
localparam [7:0] LA_VDDA = 8'h14; | ||
localparam [7:0] LA_VSSA = 8'h15; | ||
localparam [7:0] LA_POC = 8'h16; | ||
localparam [7:0] LA_CUT = 8'h17; | ||
localparam [7:0] LA_NULL = 8'hFF; |