diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-01-27 16:34:21 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-01-27 16:34:21 -0600 |
commit | a0cc3cac6ef11e0dae14f9155f96e77879a90b2c (patch) | |
tree | 224258f6a20d9680020c8a38f0d288196c28cdf0 | |
parent | a94c18fca31dab1d4b82c02c6bd428e7f08da9d0 (diff) |
fix label imports in tests
original-commit-id: bc167bedb73052c37c37f5158ae30cfdff88e581
-rw-r--r-- | tests.py | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -32,6 +32,13 @@ from pksv import ( pksv_crystal, ) +from labels import ( + remove_quoted_text, + line_has_comment_address, + line_has_label, + get_label_from_line, +) + from crystal import ( rom, load_rom, @@ -73,12 +80,8 @@ from crystal import ( get_id_for_map_constant_label, calculate_pointer_from_bytes_at, isolate_incbins, - remove_quoted_text, process_incbins, - line_has_label, - line_has_comment_address, get_labels_between, - get_label_from_line, generate_diff_insert, find_labels_without_addresses, rom_text_at, |