projects
/
soc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
974e199
)
whitespace after autopep8 messed up
author
Luke Kenneth Casson Leighton
<lkcl@lkcl.net>
Tue, 4 Aug 2020 15:53:59 +0000
(16:53 +0100)
committer
Luke Kenneth Casson Leighton
<lkcl@lkcl.net>
Tue, 4 Aug 2020 15:53:59 +0000
(16:53 +0100)
src/soc/decoder/isa/caller.py
patch
|
blob
|
history
diff --git
a/src/soc/decoder/isa/caller.py
b/src/soc/decoder/isa/caller.py
index 66e8ee49756db4b9d1359f9536b036ca80843d73..8c5ec68ef0b4ddea08a274792a627b39d4149371 100644
(file)
--- a/
src/soc/decoder/isa/caller.py
+++ b/
src/soc/decoder/isa/caller.py
@@
-112,8
+112,8
@@
class Mem:
staddr = addr
remainder = addr & (self.bytes_per_word - 1)
addr = addr >> self.word_log2
- print("Writing 0x{:x} to ST 0x{:x}
memaddr 0x{:x}/{:x}".format(v,
-
staddr, addr, remainder, swap))
+ print("Writing 0x{:x} to ST 0x{:x}
"
+
"memaddr 0x{:x}/{:x}".format(v,
staddr, addr, remainder, swap))
assert remainder & (width - 1) == 0, "Unaligned access unsupported!"
if swap:
v = swap_order(v, width)