mirror of https://github.com/openXC7/prjxray.git
Update FASM to version that includes output sorting.
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
This commit is contained in:
parent
310d197b8e
commit
f372849bc0
|
|
@ -1 +1 @@
|
|||
Subproject commit b7a578552669954050f3700ced243b9d9e12d649
|
||||
Subproject commit ece57149c96cea82ab155af3bba04e76eee4ab6a
|
||||
|
|
@ -50,16 +50,12 @@ def bits_to_fasm(db_root, bits_file, verbose, canonical):
|
|||
return not any_bits
|
||||
|
||||
model = fasm.output.merge_and_sort(
|
||||
disassembler.find_features_in_bitstream(bitdata, verbose=verbose),
|
||||
zero_function=is_zero_feature,
|
||||
sort_key=grid.tile_key,
|
||||
)
|
||||
disassembler.find_features_in_bitstream(bitdata, verbose=verbose),
|
||||
zero_function=is_zero_feature,
|
||||
sort_key=grid.tile_key,
|
||||
)
|
||||
|
||||
print(
|
||||
fasm.fasm_tuple_to_string(
|
||||
model,
|
||||
canonical=canonical),
|
||||
end='')
|
||||
print(fasm.fasm_tuple_to_string(model, canonical=canonical), end='')
|
||||
|
||||
|
||||
def main():
|
||||
|
|
|
|||
Loading…
Reference in New Issue