mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-12 06:00:55 +00:00
use more standard naming conventions
This commit is contained in:
parent
7e0157ba2b
commit
d3c8e6c14c
2 changed files with 16 additions and 15 deletions
|
@ -1,13 +1,14 @@
|
|||
package config_pkg;
|
||||
package package_import_separate;
|
||||
|
||||
localparam integer
|
||||
DATA_WIDTH = 8,
|
||||
ADDR_WIDTH = 4;
|
||||
DATAWIDTH = 8,
|
||||
ADDRWIDTH = 4;
|
||||
|
||||
localparam logic [2:0]
|
||||
IDLE = 3'b000,
|
||||
IDLE = 3'b000,
|
||||
START = 3'b001,
|
||||
DATA = 3'b010,
|
||||
ODD_PARITY = 3'b011,
|
||||
STOP = 3'b100,
|
||||
DONE = 3'b101;
|
||||
DATA = 3'b010,
|
||||
STOP = 3'b100,
|
||||
DONE = 3'b101;
|
||||
|
||||
endpackage
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue