Ron Perrella,perrella(a)mindspring.com,Internet writes:
> *
> * And how to access the program parameters from an ASM program.
>
> Thanx for your help
>
Hi I don't know what you mean by parameters but if you mean procedure and
function parameters then read this if you mean command line then this will
not the answer : -
Procedure Putpix ( x , y : word ; c : byte ); Assembler ;
Asm
Push x
Push y
Push c
.
.
.
.
End;
That was on Borland Pascal , but on Gnu I don't know how asm look like but I
think it will be better because 386 instruction support ; but in pure X86
assembler you must use registers , Good luck .