projects
/
soc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
198212f
)
remove redundant code
author
Luke Kenneth Casson Leighton
<lkcl@lkcl.net>
Sun, 5 Dec 2021 11:47:52 +0000
(11:47 +0000)
committer
Luke Kenneth Casson Leighton
<lkcl@lkcl.net>
Sun, 5 Dec 2021 11:47:52 +0000
(11:47 +0000)
src/soc/experiment/icache.py
patch
|
blob
|
history
diff --git
a/src/soc/experiment/icache.py
b/src/soc/experiment/icache.py
index b358b49069f9a6528f3d03ceb845957b6ac033ee..5279953c5820ff258b5f3b842bed310fbdcc072c 100644
(file)
--- a/
src/soc/experiment/icache.py
+++ b/
src/soc/experiment/icache.py
@@
-520,10
+520,6
@@
class ICache(Elaboratable):
comb += req_is_hit.eq(is_hit)
comb += req_is_miss.eq(~is_hit)
- with m.Else():
- comb += req_is_hit.eq(0)
- comb += req_is_miss.eq(0)
-
comb += req_hit_way.eq(hit_way)
# The way to replace on a miss