To use this alternate memory managment package,

	1) Do not use any mark or release in pascal. These features
	   are not implemented.
	
	2) include new4.o after your pascal.o in the cc load step
	
	3) include either my malloc or get the (funky) one supplied with
	   unix by default (thats malloc and free)

	4) run heapfix on the executable, eg heapfix program.



How to remake new4.o if its not here:

The file new4.s contains assembly routines which interface pascal's new and
dispose to unix's malloc and free. Say make new4.o


