From 538aaa4c1456ed7c35781268ff4f70532f170636 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Thu, 25 Sep 2014 12:54:26 +0800 Subject: [PATCH] rtio: fix o_error csr size --- soc/artiqlib/rtio/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soc/artiqlib/rtio/core.py b/soc/artiqlib/rtio/core.py index 8add3619b..3e9d6af1e 100644 --- a/soc/artiqlib/rtio/core.py +++ b/soc/artiqlib/rtio/core.py @@ -161,7 +161,7 @@ class RTIO(Module, AutoCSR): self._r_o_writable = CSRStatus() self._r_o_we = CSR() self._r_o_replace = CSR() - self._r_o_error = CSRStatus(2) + self._r_o_error = CSRStatus() self._r_o_level = CSRStatus(bits_for(ofifo_depth)) self._r_i_timestamp = CSRStatus(counter_width+fine_ts_width)