PAGE VERSION 1.0

PROGRAM DESCRIPTION:
	This application is used for educational purposes. The programs  
	show users how Page Replacement Algorithms work. The program 
	includes five page replacement algorithms: FIFO, Second Chance, 
	Clock, LRU with the Matrix Algorithm, and LRU with the Aging Algorithm.
	Users can see the difference among those algorithms by running them. 

LANGUAGE USED:
	The language used is JAVA (JDK 1.2)

FILE NAME:
	Source Code:	PAGE.java
	            	HTMLViewer.java
			MyColor.java


REQUIREMENTS TO RUN THE PROGRAM:
	Computer:	Any type of computer which can run the java 
			virtual machine
	Software:	JDK1.2 
		    	MS-DOS to type the command lines


HOW TO RUN (START) THE PROGRAM:
			* Go to the DOS prompt 
			* Go to the directory where PAGE is stored. 
			  From that directory, compile and run the 
			  program using jdk1.2.
	
        	Example:  
			Go to the directory
			c:\>cd PAGE
			c:\PAGE>javac PAGE.java
			c:\PAGE>java PAGE
			
			The application will appear on your screen.


HOW THE PROGRAM WORKS:
			The program is easy to understand. All you have 
			to do is press buttons and follow the instructions. 

			An on-line help is provided in the application.

REFERENCE:
			Operating Systems: Design and Implementation,
			by A. Tanenbaum and A. Woodhull. 
			Prentice Hall, second edition, 1997.
