mirror of https://github.com/openXC7/prjxray.git
Merge pull request #187 from mcmasterg/blockwidth2
blockwidth: shrink minor address print
This commit is contained in:
commit
e9467b8020
|
|
@ -88,7 +88,7 @@ def gen_major_writes(fnin):
|
||||||
|
|
||||||
def run(fnin, verbose=False):
|
def run(fnin, verbose=False):
|
||||||
for addr, nframes in gen_major_writes(fnin):
|
for addr, nframes in gen_major_writes(fnin):
|
||||||
print('0x%08X: 0x%08X' % (addr, nframes))
|
print('0x%08X: 0x%02X' % (addr, nframes))
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue