Giovanni Bozzetti wrote:
helloIf someone can help. Can someone send me where I can find all information to use HLASM on z/OS USS 1 What to do to write a compile script 2 What to do to run the as compiler 3 What to do to run the ld link edit Can someone send me a script to compile many programs just passing the program name I am trying using this as "//'source.asm(hello)'" -- "TERM,MACHINE(S390E)" -I My.maclib -o My.o
Hmmm. Try: as "//'source.asm(hello)'" -I "//'my.maclib'" --"term,machine(s390e)" -a=hello.lst -o My.o
But the assembler read the source code hello, but ignore my maclib and didn't produce any listing or obj, just on std.err has all my macro in error only. Thanks Giovanni
You have many questions; we have many answers, but more than can be put in an email. <ad> Consider our three day course "Developing Application for z/OS UNIX" which discusses writing code in Assembler, PL/I, C, and COBOL (each student chooses the language of their choice) for running under the shell; it also covers Assembles, compiles, binds (link edit), and running under the shell; finally, we look at the 'make' command as a way to re-build all or part of an application. Look at: http://www.trainersfriend.com/UNIX_and_Web_courses/u520descr.htm </ad> -- Kind regards, -Steve Comstock The Trainer's Friend, Inc. 303-393-8716 http://www.trainersfriend.com * To get a good Return on your Investment, first make an investment! + Training your people is an excellent investment
