diff --git a/README.md b/README.md index 9a3aeb8..fb1e719 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/luvdis/__init__.py b/luvdis/__init__.py index 3fafaf0..daa23f4 100644 --- a/luvdis/__init__.py +++ b/luvdis/__init__.py @@ -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' diff --git a/luvdis/analyze.py b/luvdis/analyze.py index 19e1f05..f23162f 100644 --- a/luvdis/analyze.py +++ b/luvdis/analyze.py @@ -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')