3
0
Fork 0
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:
Rahul Bhagwat 2025-08-06 15:39:30 -04:00
parent 7e0157ba2b
commit d3c8e6c14c
No known key found for this signature in database
2 changed files with 16 additions and 15 deletions

View file

@ -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