/*
	kicksaver
	
	i just want to analyse the CD³² ROM, 
	writing this comment took longer than
	"programming" and compiling this - aeh -
	program ;-)
*/

#include <exec/exec.h>
#include <dos/dos.h>
#include <proto/exec.h>
#include <proto/dos.h>

int main (void)
{
	BPTR file;
	
	file = Open ("RAM:kickstart",MODE_NEWFILE);
	
	Write (file,(APTR)0xf80000,524288);
	
	Close(file);
	
	return 0;
}
