Need to make error messages nonstatic so the asm code can find them.

This commit is contained in:
jshepher 2004-10-06 14:44:23 +00:00
parent e42dc803ec
commit dc9173248c
1 changed files with 2 additions and 2 deletions

View File

@ -4,11 +4,11 @@
#if defined(mc68020) || defined(__HAVE_68881__)
#ifdef mc68020
static const char errtext1[]="Need a 68020 or higher CPU";
const char errtext1[]="Need a 68020 or higher CPU";
#endif
#ifdef __HAVE_68881__
static const char errtext2[]="Need some FPU to run";
const char errtext2[]="Need some FPU to run";
#endif
asm(