[ASM] PushToConsole
So while I was trying to convert yall C++ PushToConsole to asm. It doesn't work.
Any help? Wrong offset?
PushToConsole proc Command
WORD
.data
LTClient dd 377ED910h
.code
push Command
call LTClient
add esp, 4h
ret
PushToConsole endp
WORD.data
LTClient dd 377ED910h
.code
push Command
call LTClient
add esp, 4h
ret
PushToConsole endp



