Well this is a simple python script I scripted up to extract the breakpoints out of udd files.
import binascii
import sys
if(len(sys.argv) < 2):
print "ExtractBP.py <name of extracted binary bp file>"
else:
f = open(sys.argv[1],'r')
a = f.read()
b = a.split("\nUs6")
print "Addresses\t-->\tNote(If presented)"
for c in b[1:]:
if c!='':
print binascii.hexlify((c[4:6]+chr(ord(c[6])+64)+c[7:8])[::-1])+"\t-->\t"+c[8:-1]
