
May 1st, 2006, 10:05 PM
|
|
Contributing User
|
|
Join Date: Mar 2006
Posts: 32
Time spent in forums: 3 h 7 m 54 sec
Reputation Power: 8
|
|
|
Inline ASM problem - detecting new line on my call instruction
Code:
void DisplayStatInfo(void) {
DWORD offset = Offsets.PrintText;
char *text = "leeeeeeet";
__asm {
xor edx, edx
mov ecx, text
call offset <-- detecting new line?
}
}
Does anyone know why vs 2k3 is giving me this error? Saying it's detecting a newline?
|