mirror of
https://github.com/YosysHQ/yosys
synced 2026-06-01 22:57:54 +00:00
Increase max gen.
This commit is contained in:
parent
bc275e623a
commit
cbe847e8f5
2 changed files with 4 additions and 4 deletions
|
|
@ -93,12 +93,12 @@ struct CellTypes
|
||||||
setup_module(module);
|
setup_module(module);
|
||||||
}
|
}
|
||||||
|
|
||||||
void setup_internals() { enabled_cats |= BIT_INTERNALS_OTHER | BIT_INTERNALS_EVAL | BIT_INTERNALS_FF | BIT_INTERNALS_ANYINIT | BIT_INTERNALS_MEM; }
|
void setup_internals() { enabled_cats |= BIT_INTERNALS_OTHER | BIT_INTERNALS_EVAL; }
|
||||||
void setup_internals_eval() { enabled_cats |= BIT_INTERNALS_EVAL; }
|
void setup_internals_eval() { enabled_cats |= BIT_INTERNALS_EVAL; }
|
||||||
void setup_internals_ff() { enabled_cats |= BIT_INTERNALS_FF; }
|
void setup_internals_ff() { enabled_cats |= BIT_INTERNALS_FF; }
|
||||||
void setup_internals_anyinit() { enabled_cats |= BIT_INTERNALS_ANYINIT; }
|
void setup_internals_anyinit() { enabled_cats |= BIT_INTERNALS_ANYINIT; }
|
||||||
void setup_internals_mem() { enabled_cats |= BIT_INTERNALS_FF | BIT_INTERNALS_MEM; }
|
void setup_internals_mem() { enabled_cats |= BIT_INTERNALS_FF | BIT_INTERNALS_MEM; }
|
||||||
void setup_stdcells() { enabled_cats |= BIT_STDCELLS_EVAL | BIT_STDCELLS_TRISTATE | BIT_STDCELLS_FF; }
|
void setup_stdcells() { enabled_cats |= BIT_STDCELLS_EVAL | BIT_STDCELLS_TRISTATE; }
|
||||||
void setup_stdcells_eval() { enabled_cats |= BIT_STDCELLS_EVAL; }
|
void setup_stdcells_eval() { enabled_cats |= BIT_STDCELLS_EVAL; }
|
||||||
void setup_stdcells_mem() { enabled_cats |= BIT_STDCELLS_FF; }
|
void setup_stdcells_mem() { enabled_cats |= BIT_STDCELLS_FF; }
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ import re
|
||||||
import sys
|
import sys
|
||||||
from dataclasses import dataclass
|
from dataclasses import dataclass
|
||||||
|
|
||||||
MAX_CELLS = 300
|
MAX_CELLS = 1024
|
||||||
MAX_PORTS = 20
|
MAX_PORTS = 20
|
||||||
|
|
||||||
# Build the IdString index map
|
# Build the IdString index map
|
||||||
|
|
@ -51,7 +51,7 @@ class Features:
|
||||||
@dataclass
|
@dataclass
|
||||||
class CellInfo:
|
class CellInfo:
|
||||||
type_name: str
|
type_name: str
|
||||||
inputs: list
|
inputs: MAX_CELLS
|
||||||
outputs: list
|
outputs: list
|
||||||
features: Features
|
features: Features
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue