/* Author : Rick van der Zwet * S-number : 0433373 * Version : $Id: imm.h 360 2007-12-03 02:04:17Z rick $ * Copyright : FreeBSD Licence * Description : MIPS simulator. Header */ #ifndef IMM_H #define IMM_H typedef enum { S16, SSA, U26, Z16, S16x4 } imm_control_t; word imm_call (const word in, const imm_control_t action); #endif