megadrive_test1

diff megadrive.ldscript @ 1:9e7f64c4fe7a

fixed missing defines when building romhdr.S
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 30 Jan 2017 08:29:05 +0200
parents 909c22dc18d2
children 54739a11be66
line diff
     1.1 --- a/megadrive.ldscript	Mon Jan 30 08:21:53 2017 +0200
     1.2 +++ b/megadrive.ldscript	Mon Jan 30 08:29:05 2017 +0200
     1.3 @@ -13,10 +13,10 @@
     1.4  	/* .vect section is used to place the m68k exception vectors at the
     1.5  	 * beginning of the address space
     1.6  	 */
     1.7 -	.vect : { KEEP (* (.vect)); } >rom
     1.8 +	.vect : { * (.vect); } >rom
     1.9  	/* .romhdr section is used to place the SEGA ROM header at 0x100 */
    1.10  	. = 0x100;
    1.11 -	.romhdr : { KEEP (* (.romhdr)); } >rom
    1.12 +	.romhdr : { * (.romhdr); } >rom
    1.13  	.text : { * (.text); } >rom
    1.14  	.rodata : { * (.rodata); } >rom
    1.15