git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1144 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
16 lines
324 B
C++
16 lines
324 B
C++
#include <iostream>
|
|
//#include "SAL/SimulatorController.hpp"
|
|
|
|
using namespace std;
|
|
|
|
|
|
void hello(unsigned int p){
|
|
cout << "&sal::simulator: " << hex << p << endl;
|
|
// sal::SimulatorController * salp = reinterpret_cast<sal::SimulatorController * >(p);
|
|
|
|
}
|
|
|
|
extern "C" void failSALset(unsigned int pointer){
|
|
hello(pointer);
|
|
}
|