sig
  type token =
      INT of int
    | REG of string
    | INS of string
    | LPAR
    | RPAR
    | EOL
    | LW
    | SW
    | SYSCALL
    | COMMA
    | EOF
  val s :
    (Lexing.lexbuf -> Mips_parser.token) -> Lexing.lexbuf -> Mips.mips list
end