Mike Frysinger | 9171fc8 | 2008-03-30 15:46:13 -0400 | [diff] [blame] | 1 | /* |
2 | * system_map.S - optional symbol lookup for debugging | ||||
3 | * | ||||
4 | * Copyright (c) 2007 Analog Devices Inc. | ||||
5 | * Licensed under the GPL-2 or later. | ||||
6 | */ | ||||
7 | |||||
8 | #include <config.h> | ||||
9 | |||||
10 | #ifdef CONFIG_DEBUG_DUMP_SYMS | ||||
11 | .data | ||||
12 | .global _system_map | ||||
13 | .type _system_map,@object | ||||
14 | _system_map: | ||||
15 | #include SYM_FILE | ||||
16 | .asciz "" | ||||
17 | .size _system_map,.-_system_map | ||||
18 | #endif |