/* Author : Rick van der Zwet * S-number : 0433373 * Version : $Id: sim.h 361 2007-12-03 04:27:55Z rick $ * Copyright : FreeBSD Licence * Description : MIPS simulator. Header */ #ifndef SIM_H #define SIM_H typedef uint32_t word; typedef uint16_t halfword; typedef uint8_t byte; typedef uint8_t micro_address_t; typedef uint8_t address_t; typedef enum { FALSE, TRUE } boolean; #define BITSIZE(x) (sizeof(x) * 8) #endif