hi all,
i think i'm doing something wrong in local variables definition:
Is it the right sintax for a string od 100 byte ?
Tha TASM manual says..
LOCAL String : byte : 100
but it don't seems to work :(
THX B7
i think i'm doing something wrong in local variables definition:
friz proc
LOCAL String [100] : byte
friz endp
Is it the right sintax for a string od 100 byte ?
Tha TASM manual says..
LOCAL String : byte : 100
but it don't seems to work :(
THX B7
LOCAL String[100]:BYTE
is the correct way to do it.
thanks tola !