mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-11-18 10:08:29 +01:00
CALLBACK_PROLOGUE goes away for pnolet case
This commit is contained in:
parent
361704f66e
commit
4607696900
1 changed files with 7 additions and 1 deletions
|
@ -3,10 +3,16 @@
|
|||
#ifndef __CALLBACK__
|
||||
#define __CALLBACK__
|
||||
|
||||
#ifdef MW_COMPILER
|
||||
#if defined MW_COMPILER
|
||||
/* these are no-ops for MW as I understand it */
|
||||
# define CALLBACK_PROLOGUE()
|
||||
# define CALLBACK_EPILOGUE()
|
||||
|
||||
#elif defined XW_TARGET_PNO || defined XW_TARGET_X86
|
||||
|
||||
#define CALLBACK_PROLOGUE()
|
||||
#define CALLBACK_EPILOGUE()
|
||||
|
||||
#else
|
||||
|
||||
register void *reg_a4 asm("%a4");
|
||||
|
|
Loading…
Reference in a new issue