/* *****

	Operative System for MIPS Written by Filip Ekberg at the Blekinge Institute Of Technology
	Contact: Filip@SmartIT.se

*** */

#include <iregdef.h>
#include <idtcpu.h>
        .text
        .globl  Scheduler
/* *************************************************************************
        Operative System Scheduler
		This instruction set will handle the Operative System Processor Threads
		The main point is that all processes can run untill they are finished!
************************************************************************** */
	.data
		AmountOfProcesses: 	.word 0
		ProcessesInQue:		.word 0
		ActiveProcess:		.word TheAddress 	// Have the adress for the Active Process here
		NextProcessInQue	.word NextAddress	// The next adress for the upcomming Process
		
				
