The MASM Forum Archive 2004 to 2012

Project Support Forums => HLA Forum => Topic started by: stom2008 on August 05, 2008, 07:53:38 AM

Title: Access start parameters
Post by: stom2008 on August 05, 2008, 07:53:38 AM
Hello HLA-Forum,

I am new to HLA and so I do try to do my first steps (reading Randall Hydes great book).
And as I learnd you can only learn programming (hla) by programming I tried to write some very little programs.

Now I like to write an other little commandline hla program.

And here is my question:

Is it possible to access the commandline-start-parameter and how.




newhlaprg.exe -f /foo/bar/conf.conf -i test -d n


Now I like to "read" and use -f /foo/bar/conf.conf -i test -d n ... in the hla code.


many thanks for your help.

Best Regards,
Marcus



Title: Re: Access start parameters
Post by: Sevag.K on August 06, 2008, 02:30:14 AM

program cmdprog;

#includeonce ("stdlib.hhf")

begin cmdprog;

arg.c();
mov( eax, ecx );
xor( ebx, ebx );
while( ebx < ecx ) do

arg.v( ebx );
stdout.put((type string eax ), nl );
inc( ebx );

endwhile;

end cmdprog;

Title: Re: Access start parameters
Post by: stom2008 on August 06, 2008, 08:10:06 PM
Cool,

Thank you very mutch.
Can you please explain the code a little bit for me. So that I can learn/understand how it works.

Best Regards,
Marcus

Title: Re: Access start parameters
Post by: Sevag.K on August 12, 2008, 02:17:25 AM

Sure.

arg.c();

This command is in the hla standard library.  It initializes the command line using the underlying operating system and returns the number of arguments in EAX.

mov( eax, ecx );

This makes a copy of the value returned in EAX into ECX

xor( ebx, ebx );

This zeros out the EBX register.


The loop below cycles through all the arguments on the command line.
while( ebx < ecx ) do
   ...
   ...
endwhile;


arg.v( ebx );

This is another function in the standard library.  It returns a string parameter in EAX.  The current parameter number is indicated by EBX.

stdout.put((type string eax ), nl );

This standard library functions prints out the string value returned in EAX

inc( ebx );

Increases the argument counter.

Title: Re: Access start parameters
Post by: stom2008 on August 12, 2008, 08:23:26 AM
Hi Sevag,

Many thanks for the info.

Now I think I understand the code.

One last question:

Why do you make this copy?
mov( eax, ecx );

I think eax is a universal register so that it should be possible to use this register directly?

Best Regards,
Marcus



Title: Re: Access start parameters
Post by: Sevag.K on August 13, 2008, 07:10:47 AM

EAX is not a good choice in this case since it is used as a return register.  For example, the arg.v function returns the string pointer in EAX.

Most of the standard library functions, even most Windows OS functions that return any value use EAX as a return register.



Title: Re: Access start parameters
Post by: stom2008 on August 13, 2008, 07:29:15 AM
...

Okay!

Tanks again.

Best Regards,
Marcus