summaryrefslogtreecommitdiff
path: root/wram.py
diff options
context:
space:
mode:
Diffstat (limited to 'wram.py')
-rw-r--r--wram.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wram.py b/wram.py
index 10e96a6..666d90f 100644
--- a/wram.py
+++ b/wram.py
@@ -15,7 +15,7 @@ def read_bss_sections(bss):
line = line.lstrip()
if 'SECTION' in line:
if section: sections.append(section) # last section
-
+
address = eval(line[line.find('[')+1:line.find(']')].replace('$','0x'))
section = {
'name': line.split('"')[1],