The CES_DEMO.ROM file is a ROM image file that needs to be loaded into your
Jaguar Development System's Alpine board to execute.

From the debugger, use the command:

	read ces_demo.rom 802000

to load the file into memory.  Because of its length, it may take a minute
or two to load.  Once the file is loaded, you can execute the program via
the command:

	g 802000

which instructs the debugger to start running the program at address $802000.
You can also hold down the 'B' button of Joypad #1 while resetting the
Alpine board or cycling the console's power.  The standard Jaguar startup
screen will appear, and pressing another button will lead to the program.

This is a ROM IMAGE FILE, not an executable program file, so you cannot
specify the filename on the debugger's commandline, and you cannot use
the AREAD command to load it.

To simpify matters, we've included a debugger script file which will load
and execute the demo for you in one step.  From the system commandline
prompt, enter one of the two following commands (depending on which version
of the debugger you are using).

	rdbjag ces_demo.db
	
	<or>
	
	wdb ces_demo.db


