README.TXT
----------
November 29, 1993

CSource Toolkit v1.0

This file describes the CSource toolkit.  Since this is the first version,
I am trying to find more contents to stuff it with.  Also, registered users
will recieve another unit called "updates.h" which includes the newest
updates to this toolkit.

Disclaimer: I can not be liable for any damages to hardware or data caused
by the use or misuse of this program.

Please Register
Send $20 U.S. to recieve registration materials from me.  I know this is a
very small package, but the registered version includes much more.
Also, send your name, mailing address, phone number and how you found this
file.  Thanks!
                Phillip Bastian
                1528 So. 1600 East
                Salt Lake City, Utah 84105
------------------------------------------------------------------------------

HILO.H
This unit contains two functions which show high and low byte values in a
word:

int hi(unsigned ix);
  returns high byte value of ix.

int lo(unsigned ix);
  returns low byte value of ix.

PRINTER.H
This unit contains many device names for the printers.  They have already
been initialized.

FILE const prn;      // standard printer, usually line 1
FILE const lpt1;     // printer on line 1
FILE const lpt2;     // printer on line 2
FILE const lst;      // standard printer, usually line 1
FILE const lpt3;     // printer on line 3
FILE const lpt4;     // printer on line 4
FILE const aux;      // standard serial printer, usually line COM1

STACK.H
This unit contains stack functions.

void push(unsigned *p);
  puts *p on the stack

unsigned pop();
  returns current stack address contents

Version 2.0 will probably contain much more.

