Files
PeakRDL-BusDecoder/src/peakrdl_busdecoder/cpuif/taxi_apb/taxi_apb_interface.py
2025-11-23 17:34:10 -08:00

17 lines
370 B
Python

"""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_"