blob: 9d5e98d30f1060f8dd0e48d2cb8f6e5a90abb67a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* This file is lisenced under LGPL
* Copyright (C) 2002-2003, George Thanos <george.thanos@gdt.gr>
* Yannis Mitsos <yannis.mitsos@gdt.gr>
*/
.global __start
__start:
call L1, 0, __uClibc_start
/* Define a symbol for the first piece of initialized data. */
.data
.globl __data_start
__data_start:
.long 0
.weak data_start
data_start = __data_start
|