Page 1 of 1

What is equivalent of DISPLAY (of COBOL) in assembler?

Posted: Mon Sep 15, 2014 1:55 pm
by Aardhya D
Hi

What is the equivalent keyword of DISPLAY (of Cobol) in Assembler ?

Re: What is equivalent of DISPLAY (of COBOL) in assembler?

Posted: Mon Sep 15, 2014 2:00 pm
by zprogrammer
You could make use of WTO

Re: What is equivalent of DISPLAY (of COBOL) in assembler?

Posted: Mon Sep 15, 2014 5:15 pm
by Robert Sample
DISPLAY in COBOL is a fairly complex statement since it automatically converts data to zoned decimal. There is no real equivalent in Assembler since the data conversions have to be done by the programmer. ASSIST is an Assembler macro language that contains something similar to DISPLAY but it is not commonly available.

Re: What is equivalent of DISPLAY (of COBOL) in assembler?

Posted: Sun Jan 11, 2015 7:02 pm
by ggrcha
If you are using language environment you can use CEEMOUT, but it won't convert any data. This callable services gás the advantage to work well both on CICS and batch assembler programs.

Re: What is equivalent of DISPLAY (of COBOL) in assembler?

Posted: Mon Jun 26, 2017 3:13 pm
by Aardhya D
Thanks ggrcha.