home *** CD-ROM | disk | FTP | other *** search
- ;
- ; Listing One- Printf macro.
- ;
- Printf macro
- ;
- ; The following extrn declaration only occurs if this is the first time
- ; printf appears in the source file.
- ;
- ifndef sl_printf
- stdlib segment para public 'slcode'
- extrn sl_printf:far
- stdlib ends
- endif
- ;
- ; Perform the call to the actual sl_printf routine:
- ;
- call far ptr sl_printf
- endm
- ;