Skip to content
viruscamp edited this page Nov 12, 2014 · 3 revisions
  • new datatype integer 0 is integer and 0.0 is double

  • new operators

OP_IDIV,/*	A B C	R(A) := RK(B) // RK(C)				*/
OP_BAND,/*	A B C	R(A) := RK(B) & RK(C)				*/
OP_BOR,/*	A B C	R(A) := RK(B) | RK(C)				*/
OP_BXOR,/*	A B C	R(A) := RK(B) ~ RK(C)				*/
OP_SHL,/*	A B C	R(A) := RK(B) << RK(C)				*/
OP_SHR,/*	A B C	R(A) := RK(B) >> RK(C)				*/
OP_BNOT,/*	A B	R(A) := ~R(B)					*/
Clone this wiki locally