summaryrefslogtreecommitdiff
path: root/tools/mkinfo.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/mkinfo.pl')
-rwxr-xr-xtools/mkinfo.pl6
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/mkinfo.pl b/tools/mkinfo.pl
index 6b12345305..463a10005e 100755
--- a/tools/mkinfo.pl
+++ b/tools/mkinfo.pl
@@ -55,6 +55,12 @@ sub mapscan {
55 elsif($_ =~ / +0x([0-9a-f]+) *_loadaddress = \./) { 55 elsif($_ =~ / +0x([0-9a-f]+) *_loadaddress = \./) {
56 $start = $1; 56 $start = $1;
57 } 57 }
58 elsif($_ =~ / +0x([0-9a-f]+) *_dramcopystart = \./) {
59 $start = $1;
60 }
61 elsif($_ =~ / +0x([0-9a-f]+) *__start/) {
62 $start = $1;
63 }
58 } 64 }
59 close(M); 65 close(M);
60 66