mirror of
https://github.com/cahirwpz/libnix.git
synced 2025-11-21 17:27:03 +00:00
Need to make error messages nonstatic so the asm code can find them.
This commit is contained in:
@ -4,11 +4,11 @@
|
|||||||
#if defined(mc68020) || defined(__HAVE_68881__)
|
#if defined(mc68020) || defined(__HAVE_68881__)
|
||||||
|
|
||||||
#ifdef mc68020
|
#ifdef mc68020
|
||||||
static const char errtext1[]="Need a 68020 or higher CPU";
|
const char errtext1[]="Need a 68020 or higher CPU";
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __HAVE_68881__
|
#ifdef __HAVE_68881__
|
||||||
static const char errtext2[]="Need some FPU to run";
|
const char errtext2[]="Need some FPU to run";
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
asm(
|
asm(
|
||||||
|
|||||||
Reference in New Issue
Block a user