1SECTIONS 2{ 3 .data 0x2000 : 4 { 5 LONG (foo) 6 LONG (bar) 7 . = ALIGN (0x10); 8 *(.data) 9 } 10 PROVIDE (foo = .); 11 PROVIDE (bar = .); 12} 13