view scd_header.s68 @ 9:997690aa0507

Improve method for choosing line palette entries. Read number of global and dynamic colors from image binary. Go back to doing a word, longword, word pattern of writes for turning off display, doing DMA and turning it back on again to make things work correctly on the real hardware.
author Mike Pavone <pavone@retrodev.com>
date Wed, 04 Sep 2013 00:41:52 -0700
parents ea41003cfa70
children
line wrap: on
line source

	org $0
	dc.b 'SEGADISCSYSTEM  '
	dc.b 'FM HERO    ', 0
	dc.l 0
	dc.b 'FM HERO    ', 0
	dc.l 0
	dc.l $800
	dc.l MainBootEnd-$800
	dc.l $0
	dc.l $0
	dc.l SubBootStart
	dc.l SubBootEnd-SubBootStart
	org $100
	dc.b 'SEGA GENESIS    '
	dc.b '(C)RETRODEV 2012'
	dc.b 'FM HERO         '
	dc.b 'FM HERO         '
	
	org $200
	incbin mainboot.bin
	align 11
MainBootEnd
SubBootStart
	incbin subboot.bin
SubBootEnd
	align 15