static void showea_val(TCHAR *buffer, uae_u16 opcode, uaecptr addr, int size)
{
struct mnemolookup *lookup;
- instr *table = &table68k[opcode];
+ struct instr *table = &table68k[opcode];
if (addr >= 0xe90000 && addr < 0xf00000)
goto skip;
pagesize = 16;
}
addr &= ~(pagesize - 1);
- for (int j = 0; j < pagesize; j += 16, addr += 16) {
+ for (uae_u32 j = 0; j < pagesize; j += 16, addr += 16) {
int index;
uae_u32 tag;
uae_u32 tagmask;
opcnt = 0;
for (opcode = 0; opcode < 65536; opcode++) {
cpuop_func *f;
- instr *table = &table68k[opcode];
+ struct instr *table = &table68k[opcode];
if (table->mnemo == i_ILLG)
continue;
/* Aranym MMU 68040 */
static void m68k_run_mmu040 (void)
{
- flag_struct f;
+ struct flag_struct f;
int halt = 0;
check_halt();