/************************************************************************** * DSemu: Opcode function pointer cache (cache.h) * * Released under the terms of the BSD Public Licence * * Imran Nazar (tf@oopsilon.com), 2004 * **************************************************************************/ #ifndef __CACHE_H_ #define __CACHE_H_ typedef struct { union { u32 data; u16 h[2]; u8 b[4]; }; opfptr op; // u16 cond; // u16 cyc; intfptr cond; u8 tidxlo, tidxhi; u16 flags; } RAMWORD; #endif//__CACHE_H_ /*** EOF:cache.h *********************************************************/