Merge pull request #187 from mcmasterg/blockwidth2

blockwidth: shrink minor address print
This commit is contained in:
John McMaster 2018-10-23 20:07:40 -07:00 committed by GitHub
commit e9467b8020
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ def gen_major_writes(fnin):
def run(fnin, verbose=False):
for addr, nframes in gen_major_writes(fnin):
print('0x%08X: 0x%08X' % (addr, nframes))
print('0x%08X: 0x%02X' % (addr, nframes))
def main():