Would anyone know how to get command-line arguments in NASM16? I am on a Windows XP. I have tried a great deal of things and spent much time searching for an answer to this.
What I ment by command line arguments, something simple like this would be enough.
Filename: Hello1
Params: one two three
So when you type "hello1 one two three", it would see that you typed "one two three", and say something along the lines of
Param 1: One
Param 2: Two
Param 3: Three
I am really against using C libraries (I prefer to do everything purely in assembly).. So if it is possible to do it without C, I would really appreciate your time to answer.
Someone may ask "Why would you want to do this? Just use a higher level language.".. My short answer would be that I enjoy using assembly over a high level language, because of its complexity.