Page 2 of 2
Posted: Tue May 01, 2007 9:52 am
by frank
Do you know 'kid' is from the Norse word 'kidh'? I was looking up if 'kids' is possessive or just plural. Is it "kid's", or "kids' "? I can't find a straight answer.
kids is more than one kid
kid's is the possessive form of one kid
kids' is the possessive form of more than one kid
Posted: Tue May 01, 2007 1:59 pm
by INF1n1t
Is it not "children" ?
Posted: Thu May 03, 2007 2:16 am
by Solar
[quote="Mini"]
Code: Select all
/* Link.ld */
OUTPUT_FORMAT("binary")
ENTRY(start)
SECTIONS
{
.text 0x100000 :
{
code = .; _code = .; __code = .;
*(.text)
. = ALIGN(4096);
}
.data :
{
data = .; _data = .; __data = .;
*(.data)
. = ALIGN(4096);
}
.bss :
{
bss = .; _bss = .; __bss = .;
*(.bss)
. = ALIGN(4096);
}
end = .; _end = .; __end = .;
}
Could someone
please make those tutorial maintainers add .rodata to their example linkfiles properly?
Mini
will return with the standard question why "Hello world" doesn't work...