Skip to content

Commit

Permalink
Fixed bug where highest ROM address was incorrect.
Browse files Browse the repository at this point in the history
  • Loading branch information
aarant committed Jun 14, 2020
1 parent a6deada commit 871ef27
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Options:
--start INTEGER Starting address to disassemble. Defaults to
0x8000000 (the start of the ROM).
--stop INTEGER Stop disassembly at this address. Defaults to
0x9000000 (maximum ROM address + 1).
0x9FFFFFF (maximum ROM address).
--macros FILE Assembler macro file to '.include' in
disassembly. If not specified, default macros
are embedded.
Expand Down
2 changes: 1 addition & 1 deletion luvdis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
Copyright (C) 2020 A. Antonitis. Licensed under the MIT license.
"""
__version__ = '0.7.0'
__version__ = '0.7.1'
__doc__ = __doc__.replace('__version__', __version__)
url = __url__ = 'https://github.com/arantonitis/luvdis'
2 changes: 1 addition & 1 deletion luvdis/analyze.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
THUMB = 0

BASE_ADDRESS = 0x08000000
END_ADDRESS = BASE_ADDRESS + 0x01000000 - 1 # Highest addressable location
END_ADDRESS = 0x09FFFFFF # Highest addressable location
ASM_PRELUDE = f'@ Generated with Luvdis v{__version__}\n.syntax unified\n.text\n'
MACROS = pkg_resources.resource_string('luvdis', 'functions.inc').decode('utf-8')

Expand Down

0 comments on commit 871ef27

Please sign in to comment.