--- uae/src/readcpu.c 2018/04/24 16:41:58 1.1.1.3 +++ uae/src/readcpu.c 2018/04/24 16:48:33 1.1.1.4 @@ -136,7 +136,7 @@ struct mnemolookup lookuptab[] = { struct instr *table68k; -static __inline__ amodes mode_from_str (const char *str) +STATIC_INLINE amodes mode_from_str (const char *str) { if (strncmp (str, "Dreg", 4) == 0) return Dreg; if (strncmp (str, "Areg", 4) == 0) return Areg; @@ -154,7 +154,7 @@ static __inline__ amodes mode_from_str ( return 0; } -static __inline__ amodes mode_from_mr (int mode, int reg) +STATIC_INLINE amodes mode_from_mr (int mode, int reg) { switch (mode) { case 0: return Dreg;