1995-08-09 08:06:35 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Caml Special Light *)
|
|
|
|
(* *)
|
|
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
|
|
|
(* Copyright 1995 Institut National de Recherche en Informatique et *)
|
|
|
|
(* Automatique. Distributed only by permission. *)
|
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
1995-06-15 01:17:29 -07:00
|
|
|
(* Common functions for emitting assembly code *)
|
|
|
|
|
|
|
|
val output_channel: out_channel ref
|
|
|
|
val emit_string: string -> unit
|
|
|
|
val emit_int: int -> unit
|
1996-01-06 10:56:39 -08:00
|
|
|
val emit_symbol: char -> string -> unit
|
1995-06-15 01:17:29 -07:00
|
|
|
val emit_string_literal: string -> unit
|
|
|
|
val emit_printf: ('a, out_channel, unit) format -> 'a
|
1995-11-19 08:53:12 -08:00
|
|
|
val emit_char: char -> unit
|