home *** CD-ROM | disk | FTP | other *** search
-
- COMPATIBILITY WITH MICRO FOCUS(R) COBOL PRODUCTS
- =================================================
-
- Contents
- --------
- Introduction
- MFVS/COBDIR
- Source Code files
- Directives
- HIGH-VALUES
- INDEXes
- Linkage Parameters
- SYSTEM drive
- Device files
- Closing un-opened files
- RTS subprograms
- Indexed files
- Multiple Reel files
- Screen display
- Calling RTS routines - call-by-number
- Assembler Subprograms
- Binary Files (.BIN)
- RTS.BIN
- Executable files
- USING APPEND
- SOURCEWRITER(tm) programs
-
-
- Introduction
- ------------
- This document summarizes known differences between this version of COBOL
- and versions of Micro Focus COBOL, Professional COBOL and Workbench prior
- to the Micro Focus COBOL/2 product range.
-
-
- MFVS/COBDIR
- -----------
- VS COBOL Workbench V1.3 and 2.0 used the environment variable MFVS to
- tell the Workbench system where its system files were stored. With this
- system, the environment variable, COBDIR is used. If any of your programs
- use MFVS in their filenames, then COBDIR should replace the MFVS. The
- programs should then be recompiled.
-
-
- Source Code files
- -----------------
- Source code is fully compatible between systems. However some directives
- have different behavior. See below for details.
-
- Some reserved words in this version may conflict with user-defined words
- in your older sources. If this is the case, then use the MF(1) or MF(2)
- directive when compiling your programs.
-
-
- Directives
- ----------
- VSC2 This directive follows the behavior of IBM(R) VS COBOL II release
- 3. Earlier versions of Micro Focus COBOL were compatible with
- release 1 only. In order to get that behavior using the new
- system it is necessary to use the VSC2"1" directive. See the
- Operating Guide for a fuller explanation of this directive.
-
- OSVS In earlier versions of Micro Focus COBOL these directives created
- VSC2 intermediate code files which did not perform any subscript-out-
- of-range checking on table accesses. In this system, subscript
- checking code will, by default, be created unless the NOBOUND
- compiler directive is used.
-
- COMMIT These directives are used to provide compatibility with
- DERESTRICT the Micro Focus FILESHARE system. However, they can now be
- RESTRICT achieved using the appropriate syntax and are only maintained
- for compatibility. They may be removed in future products.
-
- CHECK The CHECK directive is totally synonymous with the BOUND
- directive, and is only maintained for compatibility. It may be
- removed in later products. This directive causes bound checking
- code to be produced for subscripts and indexes.
-
- Please refer to the chapter on compiling in your COBOL Operating Guide
- for more details of these directives.
-
-
- HIGH-VALUES
- -----------
- This system substitutes hexadecimal FF for the figurative constant
- HIGH-VALUES. In Workbench 2.0 and earlier versions, hex 7F was used.
-
- Therefore, if your application moves HIGH-VALUES to an alphanumeric
- field, subsequent comparisons with X"7F" will fail.
-
-
- INDEXes
- -------
- In Professional COBOL V1.2 it was possible to use arithmetic operations
- (e.g. ADD, SUBTRACT) to alter INDEXes to tables. This is not enabled by
- default in this product. You can either avoid the problem by replacing
- the arithmetic operations by SET statements or allow the behavior by
- using the OLDINDEX compiler directive. The former method is recommended.
-
-
- Linkage Parameters
- ------------------
- The ability to reference unallocated linkage items as parameters to a
- subsequent CALL statement is not supported by this software. For example,
-
- Program A
- CALL "B" USING a1 a2
- Program B
- PROCEDURE DIVISION USING b1 b2 b3
- CALL "C" USING b1 b2 b3
- Program C
- PROCEDURE DIVISION USING c1 c2 c3
-
- will give an error 203 when the call to "C" is made.
-
-
- SYSTEM drive
- ------------
- VS COBOL Workbench V1.3 and earlier allowed programs to use the drive
- identifier "S:" on filenames to force the run time system to look in the
- "system" drive for a file.
-
- With later versions this is no longer used. It is now recommended
- that your programs, if they wish to access files in the COBOL system
- directory, use the COBDIR environment variable. This is performed by
- changing references to "S:" to "$COBDIR\". eg :
-
- SELECT FILE1 ASSIGN TO "S:FRED.DAT"
- .
- .
- CALL "S:HELP" USING HELP-ID.
-
-
- Becomes :
-
- SELECT FILE1 ASSIGN TO "$COBDIR\FRED.DAT".
- .
- .
- CALL "$COBDIR\HELP" USING HELP-ID.
-
-
- As long as the COBDIR environment variable is set then FRED and HELP will
- be looked for in that directory. (Please refer to your COBOL Operating
- Guide Introduction for details of how to set the COBDIR environment
- variable).
-
-
- Device files
- ------------
- The devices
-
- :CO: for console keyboard or screen
- :LP: for parallel printer
-
- are supported in this product. However, they should not be used in new
- programs. Use CON: and LPT1: instead.
-
-
- Closing un-opened files
- -----------------------
- In some versions of Micro Focus COBOL, closing a file which had not been
- opened was allowed. In this system, such action will cause an RTS error
- 142, or file status return 9/142 if the file has a status area defined.
- If you get the RTS error 142, you are advised to correct your program so
- that it does not attempt to close any file that has not been opened. If
- you do not wish to do this then you could define a file status for the
- problem file, but ignore the status returned on the close.
-
-
- RTS subprograms
- ---------------
- The following subprograms, which were available in Micro Focus products
- other than Micro Focus COBOL/2 are not supported in this system.
-
- o X"A7" Function 18 - disable/enable ANSI.SYS
-
- This is handled by COBOL/2, but will have no effect in LCOBOL
- linked EXE files, where ANSI.SYS is permanently enabled.
-
- o X"91" Function 32 - preload a program
- o X"91" Function 60 - fix a program in memory
- o X"91" Function 61 - unfix a program
-
- These calls will return without acting and without error in a linked
- system. Functions 60 and 61 are inappropriate for a linked system.
- In a linked system, function 32 can be emulated by adding a call to
- the subprogram which the subprogram recognizes as a "load" call, and
- then exits. This will have the effect of preloading the subprogram.
-
-
- Indexed files
- -------------
- Indexed Sequential files created by Professional COBOL V1.2, Workbench
- V1.3 (or earlier) and Level II COBOL are of a different format from those
- produced from the indexed file handler in this COBOL. The indexed file
- handler can recognize the format of existing files, and will read and
- update them, but all new files are created in the new format. You may
- wish to update your old files to the new format. To do this, use REBUILD
- with the /s:lii option. For example,
-
- REBUILD oldfile.dat,newfile.dat /s:lii [/i] [/v]
-
- If you wish to create indexed files in the old format, this is possible
- by using the IDXFORMAT"2" directive when compiling your program. If you
- use the IDXFORMAT"2" directive, the resulting executable file will create
- indexed files of the old format. If you do retain the old format, you
- will not be able to make use of the new facilities provided by this
- indexed file handler (e.g. performance improvements, variable length
- records, READ PREVIOUS etc.).
-
- Note that all programs using indexed files, old or new format, must have
- access to the indexed file handler, EXTFH, by linking it in with the
- program or making it available as a standalone module.
-
- For more details of indexed files please refer to the Files section of
- your Operating Guide.
-
-
- Multiple Reel files
- -------------------
- The header record of multiple reel files has changed since Workbench
- V2.0. The first 49 bytes contain the string :
-
- COBOL MULTIPLE FILE HEADER V1.0
-
- In order to be able to read multiple reel files created using older
- versions of Micro Focus COBOL, you should use the run time switch -v to
- disable version checking when running your program.
-
- Please refer to the Files chapter of your Operating Guide for more
- details of multiple reel files.
-
-
- Screen display
- --------------
- In Micro Focus LEVEL II COBOL it was possible (though not documented) to
- include control sequences in a data item being displayed on the screen
- using DISPLAY ... UPON CRT syntax to set attributes, ring the bell, etc.
- This will not work in this product. Any control codes will be displayed
- as the equivalent IBM characters. Control sequences can be used using
- DISPLAY ... UPON CONSOLE, but only after enabling ANSI.SYS.
-
-
- Calling RTS routines - call-by-number
- -------------------------------------
- When calling the COBOL system subprograms detailed in your Operating
- Guide, it is expected that the call will reference the subprogram number
- as a literal. For example:
-
- CALL X"83" USING CHAR.
-
- It is possible to have the subprogram number in a one-byte data-item.
- Thus:
-
- 03 PROG-NO PIC 9(2) COMP-X VALUE X"83".
-
- CALL PROG-NO USING CHAR.
-
- However, in order for this to operate with the current system it is
- necessary to link in RTSCALL.OBJ with such a program.
-
- You are advised to replace all such calls with CALL literal in order to
- avoid the problem.
-
-
- Assembler Subprograms
- ---------------------
- In Micro Focus LEVEL II COBOL, the following registers must be preserved
- by any assembler subprograms:
-
- CS DS ES SS BX Direction flag
-
- In this product, the following registers must be preserved:
-
- CX SS:SP DS BP Direction flag
-
-
- Binary Files (.BIN)
- -------------------
- Binary (.BIN) files supported by Micro Focus COBOL prior to Micro Focus
- COBOL/2 are not supported by this system. It is recommended that existing
- .BIN subprograms are converted to operate as linkable .OBJ files. When
- carrying out the conversion, you should allow for the following:
-
- o Different parameter passing order.
-
- The order of parameters pushed onto the stack by COBOL calls in this
- system is such that the first parameter popped from the stack will be
- the first parameter in the COBOL USING list.
-
- o Memory model
-
- The memory model of the systems that your .BIN files were written
- to work with was always such that parameters were pushed as 32-bit
- addresses on the stack, and a FAR return was required. In this
- system, the calling COBOL program may be compiled with different
- models such that parameters and/or returns may be NEAR or FAR. Your
- source may need recoding to take account of this.
-
- o Entry points.
-
- .BIN routines always begin execution at offset 100H from the start
- of their code segment. When converted to work as .OBJs with this
- system, the entry point can be anywhere within the assembly language
- program.
-
- This COBOL system offers a greater degree of flexibility in handling
- user-written assembly language sub-programs, making conversion of .BIN
- files worthwhile.
-
-
- RTS.BIN
- -------
- Micro Focus products prior to Micro Focus COBOL/2 supported user written
- call-by-number routines held in a file called RTS.BIN. In this system,
- RTS.BIN is supported in a slightly different way. An alternative to
- converting your RTS.BIN programs to this COBOL system interface is to
- use the two programs supplied with the COBOL system software to do it
- for you. These two files, RTSCALL.OBJ and RTSBIN.ASM, will quickly
- convert your existing RTS.BIN sources to a format compatible with this
- COBOL system.
-
- The compiler will generate an error message whenever a CALL is
- encountered of the form :
-
- CALL X"nn" USING ....
-
- where nn is between 00 and 80 hex
-
- You must convert all such calls to the following format :
-
- WORKING-STORAGE SECTION.
- 01 variable-name PIC X VALUE X"nn".
-
- PROCEDURE DIVISION.
-
- CALL variable-name USING ......
-
- At run time, the RTS CALL handler will detect a call to a numeric routine
- between 00 and 80 hex and will redirect the call to an entry point in
- RTSCALL. RTSCALL reverses the order of the parameters on the stack and
- then indexes into the large jump table in RTSBIN to execute the proper
- user-defined routine. The program RTSBIN.ASM consists entirely of a large
- address table containing entries for labels _FCAL00 through _FCAL7F.
-
- To convert existing RTS.BIN programs perform the following steps :
-
- 1. Take the assembly language source code from RTS.BIN and place it at
- the bottom of RTSBIN.ASM before the CSEG ENDS statement. Note that
- the RTSBIN.ASM is written in Microsoft(R) assembler syntax which has
- PROC and ENDP pseudo ops to indicate assembly language modules within
- a source file.
-
- 2. Change the appropriate table entry in _USRCAL_TAB from _CBLRETURN to
- the label you have used as the first statement in your routine.
-
- 3. Assemble RTSBIN into a .OBJ program.
-
- 4. Link RTSBIN.OBJ and RTSCALL.OBJ into your COBOL application program.
- Since routines in RTSBIN are not being called directly, they cannot
- be dynamically called. Therefore, RTSCALL.OBJ and RTSBIN.OBJ must
- always be linked into your COBOL application.
-
-
- Executable files
- ----------------
- Intermediate code files (.INT) from Workbench V2.0.2 or later can be run,
- using the Animator, directly with this system. Intermediate code files
- from VS COBOL Workbench V1.3 can also be run if the run time switch -v is
- used when executing. IDY files required for animating are not compatible.
- To animate under this COBOL system the programs should be compiled with
- this system.
-
- Programs from other versions should be recompiled before use.
-
-
- USING APPEND
- ------------
- With DOS V3.1 and later the APPEND command was introduced. Using this, it
- is possible to make directories other than the current directory behave
- as if they are extensions of the current directory.
-
- As the COBOL run time system will search the current directory and then
- the COBDIR directory for files, you should be aware of any older Micro
- Focus based software in your APPEND path.
-
- For example, if one of your APPEND directories contains an application
- written in an earlier Micro Focus COBOL which has library files of the
- same name as a library you are trying to open, then you must ensure that
- the library in that APPEND path conforms to the compatibility restraints
- listed above.
-
-
- SOURCEWRITER programs
- ---------------------
- Systems generated by the Micro Focus SOURCEWRITER product will not, in
- general, work if turned into standalone .EXE files by linking with
- LCOBOL. These programs are designed to work in the INT/GNT environment
- provided by the Micro Focus Toolset and Workbench products.
-
- Programs created by Micro Focus SOURCEWRITER V2.0.1 or V2.0.2 should be
- recompiled with the NOANS85 OLDINDEX MF(2) directives, when producing
- INT or GNT to work as described above.
-
-
- ==========================================================================
- Micro Focus is a registered trademark of Micro Focus Limited
- VS COBOL Workbench and SOURCEWRITER are trademarks of Micro Focus Limited
- Microsoft is registered trademark of Microsoft Corporation
- IBM is a registered trademark of International Business Machines
- Corporation
- UNIX is a registered trademark of AT&T
- ==========================================================================
- Copyright (C) 1991 Microsoft Corporation
- Copyright (C) 1991 Micro Focus Ltd
-