3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-08-15 01:15:30 +00:00

Add kind to csv (and database)

This commit is contained in:
Krystine Sherwin 2025-07-08 15:47:32 +12:00
parent 4a14207b37
commit 48a5859a1e
No known key found for this signature in database
2 changed files with 14 additions and 6 deletions

View file

@ -111,6 +111,10 @@ class SbyProperty:
def celltype(self):
return f"${str(self.type).lower()}"
@property
def kind(self):
return str(self.type)
@property
def hdlname(self):
return pretty_path(self.path).rstrip()