Hi guys, I'm a beginner to MF and am self-studying HLASM, so I need to write a lot of test program for practise.
Sometimes I have to recompile/rebind the program very frequently, so doing it with JCL is quite inconvenient, because I have to switch to SDSF and 'press-press-...-press' enter key in order to watch the progress and read logs.
Is there a way to compile/bind it in foreground instead of submitting job? Some thing like the C89/C99 frontend tools?
I know the 'as' command, but I only found a very brief introduction for it in IBM's knowledge center. And after compiling the asm source code, I do not know what command I can use to bind the object files.
Thank you guys for your help in advance!
proc 0
control list
sasm xxx options
if &lastcc <= 4 then +
do
listdsi xxx.load
if &lastcc = 0 then cleard xxx.load
alloc f(syslib) shr reus da(load)
link xxx load(xxx(xxx))
link xxx test
freesys
free f(syslib)
end