blob: 59d809c6a06063727c9a005040d0bf9594a44c24 (
plain)
1
2
3
4
5
6
7
|
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 _Bool directWriteOutput(self, uint32_t accessWidth, uint32_t accessOffset, bytearray data)
|