blob: 9ea0e7e3dcbf3d5df2a4f6279e73ecbfa81cd5f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
from awlsim.common.cython_support cimport *
from awlsim.core.instructions.main cimport *
cdef class AwlInsn_BEND(AwlInsn):
cdef public dict __typeCalls
cdef uint32_t __type_UB
cdef uint32_t __type_UNB
cdef uint32_t __type_OB
cdef uint32_t __type_ONB
cdef uint32_t __type_XB
cdef uint32_t __type_XNB
cdef __run_UB(self, ParenStackElem pse)
cdef __run_UNB(self, ParenStackElem pse)
cdef __run_OB(self, ParenStackElem pse)
cdef __run_ONB(self, ParenStackElem pse)
cdef __run_XB(self, ParenStackElem pse)
cdef __run_XNB(self, ParenStackElem pse)
|