2000-05-23 20:12:52 +02:00
|
|
|
/* Copyright (C) 2000 Free Software Foundation, Inc.
|
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 06:58:11 +02:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
2000-05-23 20:12:52 +02:00
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 06:58:11 +02:00
|
|
|
Lesser General Public License for more details.
|
2000-05-23 20:12:52 +02:00
|
|
|
|
2001-07-06 06:58:11 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with the GNU C Library; if not, write to the Free
|
|
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
02111-1307 USA. */
|
2000-05-23 20:12:52 +02:00
|
|
|
|
2000-06-21 12:38:25 +02:00
|
|
|
#include <stdlib.h>
|
2000-12-17 18:09:01 +01:00
|
|
|
#include "vismod.h"
|
2000-06-21 12:38:25 +02:00
|
|
|
|
2000-05-23 20:12:52 +02:00
|
|
|
int
|
|
|
|
protlocal (void)
|
|
|
|
{
|
|
|
|
return 0x40;
|
|
|
|
}
|
|
|
|
asm (".protected protlocal");
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
calllocal2 (void)
|
|
|
|
{
|
|
|
|
return protlocal () + 0x100;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
(*getlocal2 (void)) (void)
|
|
|
|
{
|
|
|
|
return protlocal;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
protinmod (void)
|
|
|
|
{
|
|
|
|
return 0x4000;
|
|
|
|
}
|
|
|
|
asm (".protected protinmod");
|
|
|
|
|
|
|
|
int
|
|
|
|
callinmod2 (void)
|
|
|
|
{
|
|
|
|
return protinmod () + 0x10000;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
(*getinmod2 (void)) (void)
|
|
|
|
{
|
|
|
|
return protinmod;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
protitcpt (void)
|
|
|
|
{
|
|
|
|
return 0x400000;
|
|
|
|
}
|
|
|
|
asm (".protected protitcpt");
|
|
|
|
|
|
|
|
int
|
|
|
|
callitcpt2 (void)
|
|
|
|
{
|
|
|
|
return protitcpt () + 0x1000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
(*getitcpt2 (void)) (void)
|
|
|
|
{
|
|
|
|
return protitcpt;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *protvarlocal = __FILE__;
|
|
|
|
asm (".protected protvarlocal");
|
|
|
|
|
2003-03-29 04:46:03 +01:00
|
|
|
const char **
|
2000-05-23 20:12:52 +02:00
|
|
|
getvarlocal2 (void)
|
|
|
|
{
|
2003-03-29 04:46:03 +01:00
|
|
|
return &protvarlocal;
|
2000-05-23 20:12:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *protvarinmod = __FILE__;
|
|
|
|
asm (".protected protvarinmod");
|
|
|
|
|
2003-03-29 04:46:03 +01:00
|
|
|
const char **
|
2000-05-23 20:12:52 +02:00
|
|
|
getvarinmod2 (void)
|
|
|
|
{
|
2003-03-29 04:46:03 +01:00
|
|
|
return &protvarinmod;
|
2000-05-23 20:12:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *protvaritcpt = __FILE__;
|
|
|
|
asm (".protected protvaritcpt");
|
|
|
|
|
2003-03-29 04:46:03 +01:00
|
|
|
const char **
|
2000-05-23 20:12:52 +02:00
|
|
|
getvaritcpt2 (void)
|
|
|
|
{
|
2003-03-29 04:46:03 +01:00
|
|
|
return &protvaritcpt;
|
2000-05-23 20:12:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* We must never call these functions. */
|
|
|
|
int
|
|
|
|
callitcpt3 (void)
|
|
|
|
{
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
(*getitcpt3 (void)) (void)
|
|
|
|
{
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
|
2003-03-29 04:46:03 +01:00
|
|
|
const char **
|
2000-05-23 20:12:52 +02:00
|
|
|
getvaritcpt3 (void)
|
|
|
|
{
|
|
|
|
abort ();
|
|
|
|
}
|