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 rawInsn 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 frozenset _widths_1 cdef public frozenset _widths_8_16_32 cdef public frozenset _widths_32 cdef run(self)