Hello evererybody!!
Excuse me, but I am newbie...
Does anyone know the meaning of PUSHZ instruction?
Thank you very much.
On x86 there is no PUSHZ instruction.
PUSH
PUSHAD
PUSHFD etc ...
pushZ is a command used by a PIC processor...
Paul
I can not believe, because I have a code like that.... in x86
pushz "ab"
pushz "file.txt"
call fopen
and it works ....
Quote from: kick on April 12, 2005, 11:13:05 AM
I can not believe, because I have a code like that.... in x86
pushz "ab"
pushz "file.txt"
call fopen
and it works ....
Then it looks to me like a macro. Which assembler are you using?
PUSHZ looks like "push a pointer to a zero terminated string onto the stack".
Isn´t there something told in a help file or something like that.
Maybe start a "find in files" search in the assembler home directory.
Yes, you are right
My code has a PUSHZ macro
Thank you, and sorry ....