X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=pico%2Fpico_int.h;h=55da52654165d3e6ae5a1a58951f997521edb538;hb=5e89f0f5aebedc086888415e063b9883fc4a9e92;hp=013ce2c2b5caf145e8ce49428d866a69f92b800a;hpb=fc1874de8af2fb53449bcfa931e025071f188b3e;p=picodrive.git diff --git a/pico/pico_int.h b/pico/pico_int.h index 013ce2c..55da526 100644 --- a/pico/pico_int.h +++ b/pico/pico_int.h @@ -471,8 +471,6 @@ void PicoDoHighPal555M4(void); void PicoDrawSetColorFormatMode4(int which); // memory.c -PICO_INTERNAL void PicoInitPc(unsigned int pc); -PICO_INTERNAL unsigned int PicoCheckPc(unsigned int pc); PICO_INTERNAL void PicoMemSetup(void); unsigned int PicoRead8_io(unsigned int a); unsigned int PicoRead16_io(unsigned int a); @@ -686,6 +684,12 @@ extern void lprintf(const char *fmt, ...); #define MEMH_FUNC #endif +#ifdef __GNUC__ +#define NOINLINE __attribute__((noinline)) +#else +#define NOINLINE +#endif + #ifdef __cplusplus } // End of extern "C" #endif