amiga_boottest

diff amiga.ld @ 2:58ebd84822e7

it works
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 22 Feb 2018 12:44:20 +0200
parents 48093e4bd99a
children
line diff
     1.1 --- a/amiga.ld	Wed Feb 21 18:00:45 2018 +0200
     1.2 +++ b/amiga.ld	Thu Feb 22 12:44:20 2018 +0200
     1.3 @@ -3,13 +3,11 @@
     1.4  PROVIDE (_stacktop = 0x80000);
     1.5  
     1.6  SECTIONS {
     1.7 -	/* bootblock will load us at 100h, after the interrupt vectors */
     1.8 -	. = 0x100;
     1.9 +	/* bootblock will load us at 10000h */
    1.10 +	. = 0x10000;
    1.11  
    1.12 -	.text : {
    1.13 -		* (.text.startup);
    1.14 -		* (.text);
    1.15 -	}
    1.16 +	.startup : { * (.startup); }
    1.17 +	.text : { * (.text); }
    1.18  	.rodata : { * (.rodata); }
    1.19  	.data : { * (.data); }
    1.20