Displaying 1 result from an estimated 1 matches for "printmagicvalu".
Did you mean:
printmagicvalue
2020 Jan 08
2
Position independent code writes absolute pointer
...everyone,
I have an issue with some code that I jit/load as position independent code. I have a feeling that it is not possible to solve the issue but I wanted to give it a try.
#include <stdio.h>
int magicValue = 123;
int magicValue2 = 321;
volatile int *pValue = &magicValue;
void printMagicValue()
{
printf("Planschi...\n");
printf("The magic value is %i 0x%p && 0x%p\n", magicValue, &magicValue, pValue);
}
void setMagicValue(int value)
{
magicValue = value;
}
This is the code which I will load as PIC, for the JTMB I use the following s...