Add 's_' prefix to OBI port for consistency with all other cpuifs

This commit is contained in:
Alex Mykyta
2025-10-25 17:24:57 -07:00
parent dafd693a1d
commit bb765e6ae3
2 changed files with 29 additions and 29 deletions

View File

@@ -8,10 +8,10 @@ class OBI_Cpuif(CpuifBase):
@property
def port_declaration(self) -> str:
return "obi_intf.subordinate obi"
return "obi_intf.subordinate s_obi"
def signal(self, name: str) -> str:
return "obi." + name
return "s_obi." + name
@property
def regblock_latency(self) -> int:
@@ -51,7 +51,7 @@ class OBI_Cpuif_flattened(OBI_Cpuif):
return ",\n".join(lines)
def signal(self, name: str) -> str:
return "obi_" + name
return "s_obi_" + name
@property
def parameters(self) -> List[str]: