```
__gshared a = "sdfg";
void main()
{
asm
{
mov RCX, [a];
}
}
```Error: cannot directly load global variable 'a' with PIC code
How can i do that indirectly then ?
Basile B. via Digitalmars-d-learn Sat, 03 Feb 2018 21:05:45 -0800
```
__gshared a = "sdfg";
void main()
{
asm
{
mov RCX, [a];
}
}
```Error: cannot directly load global variable 'a' with PIC code
How can i do that indirectly then ?