Creating an Application w/ FORTRAN and Assembly Language

ID: Q33351

4.00 4.01 4.10 5.00 5.10 1.00 1.00a | 4.10 5.00 5.10

MS-DOS                              | OS/2
kbprg

The information in this article applies to:

When an application developed in FORTRAN calls a subprogram developed in assembly language, the subprogram must preserve the DS, SS, BP, SI and DI registers and clear the direction flag.

When an application uses the default optimizations, FORTRAN uses the SI and DI registers extensively. An assembly language subprogram that changes SI or DI must save the registers on the stack (with a PUSH instruction) and restore them from the stack (with a POP instruction) before it returns. The FORTRAN code also assumes that the direction flag, used by string functions in assembly language, is always clear. If your assembly language subprogram sets the direction flag (with an STD instruction), it must clear the flag (with a CLD instruction) before it returns.

As a general rule, an assembly language subprogram should also preserve the values of the DS, SS, and BP segment registers (using the PUSH and POP instructions as indicated above).

Additional reference words: kbinf 4.00 4.01 4.10 5.00 5.10 1.00 KBCategory: kbprg KBSubcategory: FORTLngIss

Last Reviewed: April 30, 1998