I am looking for the an example of how to get the data from a dynamic
string and its length using PB-DOS's Inline Assembler. What would be
the DOS equivelant to the 32-bit chunk below?
StringIn is a dynamic string.
Any help will be greatly appreciated....
Thanks
Scott Slater
------------------
string and its length using PB-DOS's Inline Assembler. What would be
the DOS equivelant to the 32-bit chunk below?
Code:
! mov eax, StringIn ; Get Input Buffer Handle to eax ! mov eax, [eax] ; get address of data ! mov edx, [eax-4] ; StringIn's Length into edx ! mov ebx, [eax+1] ; second character into ebx
Any help will be greatly appreciated....
Thanks
Scott Slater
------------------
Comment