When I call a function that is below my current one, it works, but I fail to call one on top of it.
Code: Select all
*absolute = ((uint32)newaddress - (uint32)absolute) / 4 + 1;
I've tried to use signed values instead, but that won't work either.
Code: Select all
*absolute = ((uint32)newaddress - (uint32)absolute) / 4 + 1;