kolibrios/programs/system/kobra/trunk/symbols2dbg.py
vkos 3612344bac Initial commit of Kobra, Kolibri Bus for Reaching Applications
git-svn-id: svn://kolibrios.org@1238 a494cfbc-eb01-0410-851d-a64ba20cac60
2009-10-26 17:03:29 +00:00

23 lines
344 B
Python
Executable File

#! /usr/bin/env python3
# -*- coding: utf-8 -*-
# Launch this in following way:
# readelf --syms <file> | sysmbold2bdg.py ><file.dbg>
#8: 00000004 4 OBJECT GLOBAL DEFAULT COM main_group_list
# Skip 3 lines
input()
input()
input()
while True:
try:
s = input().split()
except:
break
try:
print('0x'+s[1], s[7])
except:
pass