home *** CD-ROM | disk | FTP | other *** search
- ;-------------------------------------------------------------------------
- ; void pascal fiction1(int x, long int y, long int z);
- ;-------------------------------------------------------------------------
- @FICTION1$QILL proc far
- push bp
- push si ; recommended by Borland when register
- push di ; variables are enabled
- mov bp,sp
- sub sp,4
-
- x EQU word ptr [bp+14] ; passed parameters reference to bp
- yHI EQU word ptr [bp+12] ; calculated by Borland
- yHI EQU word ptr [bp+10]
- zHI EQU word ptr [bp+8]
- zLO EQU word ptr [bp+6]
-
- i1 EQU word ptr [bp-2] ; local parameters reference to bp
- i2 EQU word ptr [bp-4] ; calculated by Borland
-
- ; play with the GAZINTAS here and pass back GAZOWTAS
- ; The compiler has calculated all of the references to the
- ; base pointer for you, and even commented them above with
- ; the appropriate variable names which you may create equates
- ; for and now address by name.
-
- mov sp,bp
- pop di ; recommended by Borland when register
- pop si ; variables are enabled
- pop bp
- ret 10
- @FICTION1$QILL endp
-