home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.barnyard.co.uk
/
2015.02.ftp.barnyard.co.uk.tar
/
ftp.barnyard.co.uk
/
cpm
/
walnut-creek-CDROM
/
CPM
/
CPM68K
/
MSUTILS.LBR
/
T.SQ
/
T.S
Wrap
Text File
|
2000-06-30
|
896b
|
23 lines
*#######################################################################
* Program T...Send a Formfeed to Printer Utility
*
* Dr. David C. Wilcox
* DCW Industries, Inc.
* 5354 Palm Drive, La Canada, CA 91011
* 818/790-3844
*
* August 1, 1985
*#######################################################################
boot equ 00 *Warm Boot
list equ 05 *List Output
ff equ 12 *Ascii FF
bdos equ 02 *bdos entry point
*#######################################################################
move.b #ff,d1 *Send a Form feed
move.w #list,d0 *to the printer
trap #bdos
move.w #boot,d0 *and return to CP/M 68k
trap #bdos *via a warm boot
*#######################################################################
end