projects
/
soc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c74825d
)
Remove noisy print statements in selectable_int.py
author
Michael Nolan
<mtnolan2640@gmail.com>
Sat, 16 May 2020 18:05:38 +0000
(14:05 -0400)
committer
Michael Nolan
<mtnolan2640@gmail.com>
Sat, 16 May 2020 18:05:38 +0000
(14:05 -0400)
src/soc/decoder/selectable_int.py
patch
|
blob
|
history
diff --git
a/src/soc/decoder/selectable_int.py
b/src/soc/decoder/selectable_int.py
index e09d85957e345f2fddd74b9460ba4598e53fd76a..522f65161277b9ed53b40311bb593a72a009e445 100644
(file)
--- a/
src/soc/decoder/selectable_int.py
+++ b/
src/soc/decoder/selectable_int.py
@@
-89,12
+89,9
@@
class FieldSelectableInt:
return self._op(xor, b)
def get_range(self):
- print ("get_range", self.si)
vi = SelectableInt(0, len(self.br))
for k, v in self.br.items():
- print ("get_range", k, v, self.si[v])
vi[k] = self.si[v]
- print ("get_range", vi)
return vi
def merge(self, vi):