Search found 6 matches
- Mon Sep 07, 2015 3:29 pm
- Forum: Thought of the Day, General Talk & Jokes.
- Topic: Count to a Million!
- Replies: 234
- Views: 88171
- 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: 1508
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...
- 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: 1508
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...
- 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: 1508
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...
- Tue Jul 21, 2015 10:22 pm
- Forum: Assembler & PL/I.
- Topic: In assembler, how can we initialize the register to 0000?
- Replies: 2
- Views: 913
Re: In assembler, how can we initialize the register to 0000
enrico thanks for your help.
- 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: 913
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.
In assembler, how can we initialize the register to 0000? Are there some best practices to choose from? Appreicate your help.