Adds ISim support to tool options
Extends tool configuration to include ISim options by adding a new field to the model and example configuration file. Supports specifying ISim arguments for enhanced simulation workflows.
This commit is contained in:
@@ -56,3 +56,6 @@ tool_options:
|
|||||||
- "3"
|
- "3"
|
||||||
|
|
||||||
fuse: []
|
fuse: []
|
||||||
|
|
||||||
|
isim:
|
||||||
|
- "-gui"
|
@@ -14,6 +14,7 @@ class ToolOptions(BaseModel):
|
|||||||
bitgen: List[str] = Field(default_factory=list)
|
bitgen: List[str] = Field(default_factory=list)
|
||||||
trace: List[str] = Field(default_factory=list)
|
trace: List[str] = Field(default_factory=list)
|
||||||
fuse: List[str] = Field(default_factory=list)
|
fuse: List[str] = Field(default_factory=list)
|
||||||
|
isim: List[str] = Field(default_factory=list)
|
||||||
|
|
||||||
class Dependency(BaseModel):
|
class Dependency(BaseModel):
|
||||||
name: Optional[str] = None # Name ist jetzt optional
|
name: Optional[str] = None # Name ist jetzt optional
|
||||||
|
Reference in New Issue
Block a user