summaryrefslogtreecommitdiffstats
path: root/awlsim/core/instructions/main.pxd.in
blob: 8e3b80d32feb08f8efb47762ee3f5d8bd193627a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from awlsim.core.cpu cimport *
from awlsim.core.statusword cimport *
from awlsim.core.operators cimport *

cdef class AwlInsn(object):
	cdef public S7CPU cpu
	cdef public uint32_t insnType
	cdef public object labelStr
	cdef public object commentStr
	cdef public object parentInfo
	cdef public int32_t ip
	cdef public list ops
	cdef public uint32_t opCount
	cdef public AwlOperator op0
	cdef public AwlOperator op1
	cdef public tuple params

	cdef public uint32_t _widths_1
	cdef public uint32_t _widths_8_16_32
	cdef public uint32_t _widths_16
	cdef public uint32_t _widths_32
	cdef public uint32_t _widths_scalar
	cdef public uint32_t _widths_all

	cdef run(self)
bues.ch cgit interface