view scd_header.s68 @ 15:3e2e3129a619 default tip

Re-arrange some VDP writes so that the address register gets setup properly for the FIFO-fill while still avoiding a freeze
author Mike Pavone <pavone@retrodev.com>
date Sun, 08 Sep 2013 17:25:27 -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