These files are to be used in implementing software floating point conversions

Files:
   README	
	This file
   Makefile
	Makefile.  Note carefully the compiler settings
   fp.h
	Prototype declaration and macro definitions for conversion code
   fp.c
	The file you should modify to include your solutions
   ftest.c
	Code that displays floating point values and allows you to test your code.
	Command line consists of sequence of Hex arguments + flags "-f" and "-d".

	The "-d" flag indicates "double mode" (default).  In this mode, the following
	hex patterns specify the 64-bit double values.  The value is displayed
	and the effect of converting to a float is displayed.

	The "-f" flag indicates "float mode".  In this mode, the following
	hex patterns specify the 32-bit float values.  The value is displayed
	and the effect of converting to a double is displayed.

