tags:

views:

19

answers:

1

how do you get command line argument in TASM? Pretty simple in MASM32

invoke GetCL,1,addr buffer

A: 

I presume you should always be able to use the OS's API functions. For Windows programs, start with GetCommandLine.

PhiS