Add taxi apb interface

This commit is contained in:
Byron Lathi
2025-11-22 15:55:04 -08:00
parent 217ff15431
commit 59724105c5
6 changed files with 168 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
"""Taxi APB-specific interface implementations."""
from ..interface import SVInterface
class TaxiAPBSVInterface(SVInterface):
"""Taxi APB SystemVerilog interface."""
def get_interface_type(self) -> str:
return "taxi_apb_if"
def get_slave_name(self) -> str:
return "s_apb"
def get_master_prefix(self) -> str:
return "m_apb_"