blob: 4bb4f2d3b81f4b157097ee3a602e379198738008 (
plain)
1
2
3
4
5
6
7
8
|
from awlsim.common.cython_support cimport *
from awlsim.core.hardware cimport *
cdef class HardwareInterface_Dummy(AbstractHardwareInterface):
cdef readInputs(self)
cdef writeOutputs(self)
cdef bytearray directReadInput(self, uint32_t accessWidth, uint32_t accessOffset)
cdef ExBool_t directWriteOutput(self, uint32_t accessWidth, uint32_t accessOffset, bytearray data) except ExBool_val
|