|
|
| version 1.4, 2004/01/23 14:33:26 | version 1.5, 2004/01/27 15:53:56 |
|---|---|
| Line 32 | Line 32 |
| #include "ia32.mcr" | #include "ia32.mcr" |
| static DWORD (*calc_ea_dst_tbl[0x100])(void); | DWORD (*calc_ea_dst_tbl[0x100])(void); |
| static DWORD (*calc_ea32_dst_tbl[0x100])(void); | DWORD (*calc_ea32_dst_tbl[0x100])(void); |
| #if defined(DEBUG) || !defined(IA32_INLINE_CALC_EA) | |
| DWORD | DWORD |
| calc_ea_dst(DWORD op) | calc_ea_dst(DWORD op) |
| { | { |
| Line 46 calc_ea_dst(DWORD op) | Line 46 calc_ea_dst(DWORD op) |
| return ((*calc_ea_dst_tbl[op])() & 0xffff); | return ((*calc_ea_dst_tbl[op])() & 0xffff); |
| return (*calc_ea32_dst_tbl[op])(); | return (*calc_ea32_dst_tbl[op])(); |
| } | } |
| #endif /* IA32_INLINE_CALC_EA */ | |
| /* | /* |