Merge pull request #178 from daveshah1/vexriscv_linux_yosys

vexriscv: Fix some floating signals
This commit is contained in:
enjoy-digital 2019-05-04 20:02:42 +02:00 committed by GitHub
commit a50aff2c74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -126,6 +126,9 @@ class VexRiscv(Module, AutoCSR):
i_dBusWishbone_ERR=dbus.err) i_dBusWishbone_ERR=dbus.err)
if "linux" in variant: if "linux" in variant:
# Tie zero to prevent 1'bx here
self.cpu_params["i_softwareInterrupt"] = 0
self.cpu_params["i_externalInterruptS"] = 0
self.add_timer() self.add_timer()
if "debug" in variant: if "debug" in variant: