blob: ce35c0480d4a02eb535bb1a774c80fdfce4e2348 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
from awlsim.common.cython_support cimport *
from awlsim.core.cpu cimport *
cdef class S7CPUSpecs(object):
cdef public S7CPU cpu
cdef public uint32_t nrAccus
cdef public uint32_t nrTimers
cdef public uint32_t nrCounters
cdef public uint32_t nrFlags
cdef public uint32_t nrInputs
cdef public uint32_t nrOutputs
cdef public uint32_t nrLocalbytes
cdef public uint32_t parenStackSize
cdef public uint32_t callStackSize
|