source:
Deliverables/D2.2/8051/src/ASM/MIPSInterpret.mli
@
625
Last change on this file since 625 was 486, checked in by , 10 years ago | |
---|---|
File size: 393 bytes |
Line | |
---|---|
1 | (* Adapted from Pottier's PP compiler *) |
2 | |
3 | (** This module provides interpretations of the MIPS operators, for |
4 | use in building interpreters or in the compiler itself. *) |
5 | |
6 | val unop: MIPSOps.unop -> (Value.t -> Value.t) |
7 | val binop: MIPSOps.binop -> (Value.t -> Value.t -> Value.t) |
8 | |
9 | val uncon: MIPSOps.uncon -> (Value.t -> Value.t) |
10 | val bincon: MIPSOps.bincon -> (Value.t -> Value.t -> Value.t) |
Note: See TracBrowser
for help on using the repository browser.