You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
232 B

_start = 0x000000;
SECTIONS
{
. = 0x1000 + SIZEOF_HEADERS;
.data : AT (0x10000)
{
ASCIZ "This is a string"
ASCIZ "This is another\n\123tring"
ASCIZ ""
ASCIZ noquotes
}
/DISCARD/ : { *(*) }
}