Search found 6 matches

by RoyW
Mon Sep 07, 2015 3:29 pm
Forum: Thought of the Day, General Talk & Jokes.
Topic: Count to a Million!
Replies: 234
Views: 74122

Re: Count to a Million!

164
by RoyW
Mon Sep 07, 2015 3:28 pm
Forum: IBM COBOL, GnuCOBOL (OpenCOBOL), OOCobol.
Topic: Does a standalone cobol program need link editing?
Replies: 5
Views: 1021

Re: Does a standalone cobol program need link editing?

If you look at the pseudo-assembler code produced by the COBOL compiler, you will notice that COBOL has a number of run-time routines that are invoked (the DISPLAY statement has a run-time routine, for example, so every DISPLAY statement will use the system routine). These run-time routines need to...
by RoyW
Mon Sep 07, 2015 3:28 pm
Forum: IBM COBOL, GnuCOBOL (OpenCOBOL), OOCobol.
Topic: Does a standalone cobol program need link editing?
Replies: 5
Views: 1021

Re: Does a standalone cobol program need link editing?

With COBOL V5, loadmodules are no longer used (instead exclusively Program Objects are produced) but the principle is the same. The compiler does not produce code that is directly executable. Then how do we execute the programs now in JCL? Are we not going to use PGM=pgm in the JCL now? We are stil...
by RoyW
Wed Aug 19, 2015 12:56 pm
Forum: IBM COBOL, GnuCOBOL (OpenCOBOL), OOCobol.
Topic: Does a standalone cobol program need link editing?
Replies: 5
Views: 1021

Does a standalone cobol program need link editing?

Hi, I know that for preparing a COBOL program before executing using a RUN JCL, we need to compile the program and then link edit it so that we have a load module which can be executed using the JCL. But I have the confusion that if we have only one cobol program which is stand alone, then do we nee...
by RoyW
Wed Jul 01, 2015 12:08 pm
Forum: Assembler & PL/I.
Topic: In assembler, how can we initialize the register to 0000?
Replies: 2
Views: 757

In assembler, how can we initialize the register to 0000?

Hi,

In assembler, how can we initialize the register to 0000? Are there some best practices to choose from? Appreicate your help.

Go to advanced search