8 Sept 1994.


	REL File Virtual Memory Commands
	--------------------------------

	To load a REL file record into memory FAST:

	LOAD"VMR;"+chr$(rec_lo)+chr$(rec_hi)+";"+chr$(load_addr_lo)+chr$(load_addr_lo)+
		";"+chr$(file_number)

	likewise to save a REL record from memory:

	SAVE "VMR;"+chr$(rec_lo)+chr$(rec_hi)+";"+chr$(load_addr_lo)+chr$(load_addr_lo)+
                ";"+chr$(file_number)

Example:
Purpose:
	Load record #1 from the preprepared REL file "A REL FILE" into the 
	top of screen memory.	

	10 OPEN 3,8,0,"A REL FILE"
	20 LOAD "VMR;"+chr$(1)+chr$(0)+";"+chr$(0)+chr$(4)+";"+chr$(3),7,1
	30 CLOSE 3
	40 END


Naturally the machine code equivalent of this will also work.  However it is especially
useful for programmes written in BASIC to speed things up.  Eg you could load a record
over the top of a string, or a small array, or as above quickly load a screen from disk.

