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