sig
  type munop = Maddi of int32 | Msetei of int32 | Msetnei of int32
  type mbinop =
      Mmov
    | Madd
    | Msub
    | Mmul
    | Mdiv
    | Msete
    | Msetne
    | Msetl
    | Msetle
    | Msetg
    | Msetge
  type mubranch = Mjz | Mjnz | Mjlei of int32 | Mjgi of int32
  type mbbranch = Mjl | Mjle
  val print_munop : Stdlib.Format.formatter -> Ops.munop -> unit
  val print_mbinop : Stdlib.Format.formatter -> Ops.mbinop -> unit
  val print_mubranch : Stdlib.Format.formatter -> Ops.mubranch -> unit
  val print_mbbranch : Stdlib.Format.formatter -> Ops.mbbranch -> unit
end