Make format.

Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
This commit is contained in:
Keith Rothman 2019-02-06 23:07:19 -08:00
parent c830c27357
commit 8acbf97b49
1 changed files with 2 additions and 1 deletions

View File

@ -138,7 +138,8 @@ class FasmAssembler(object):
for block_type in any_bits:
# Mark all frames used by this tile as in use.
bits = gridinfo.bits[block_type]
for frame in range(bits.base_address, bits.base_address + bits.frames):
for frame in range(bits.base_address,
bits.base_address + bits.frames):
self.frames_in_use.add(frame)
def parse_fasm_filename(self, filename):