Fixed code generation to use sc_register_indexed
This commit is contained in:
parent
e719dc1118
commit
e332ef87c1
@ -28,7 +28,7 @@
|
|||||||
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
// POSSIBILITY OF SUCH DAMAGE.
|
// POSSIBILITY OF SUCH DAMAGE.
|
||||||
//
|
//
|
||||||
// Created on: Wed Sep 20 11:47:24 CEST 2017
|
// Created on: Wed Sep 20 22:30:45 CEST 2017
|
||||||
// * plic_regs.h Author: <RDL Generator>
|
// * plic_regs.h Author: <RDL Generator>
|
||||||
//
|
//
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
@ -51,7 +51,7 @@ protected:
|
|||||||
// storage declarations
|
// storage declarations
|
||||||
BEGIN_BF_DECL(priority_t, uint32_t);
|
BEGIN_BF_DECL(priority_t, uint32_t);
|
||||||
BF_FIELD(priority, 0, 3);
|
BF_FIELD(priority, 0, 3);
|
||||||
END_BF_DECL();
|
END_BF_DECL() ;
|
||||||
std::array<priority_t, 255> r_priority;
|
std::array<priority_t, 255> r_priority;
|
||||||
|
|
||||||
uint32_t r_pending;
|
uint32_t r_pending;
|
||||||
@ -65,7 +65,7 @@ protected:
|
|||||||
uint32_t r_claim_complete;
|
uint32_t r_claim_complete;
|
||||||
|
|
||||||
// register declarations
|
// register declarations
|
||||||
sysc::sc_register_field<priority_t, 255> priority;
|
sysc::sc_register_indexed<priority_t, 255> priority;
|
||||||
sysc::sc_register<uint32_t> pending;
|
sysc::sc_register<uint32_t> pending;
|
||||||
sysc::sc_register<uint32_t> enabled;
|
sysc::sc_register<uint32_t> enabled;
|
||||||
sysc::sc_register<threshold_t> threshold;
|
sysc::sc_register<threshold_t> threshold;
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
// POSSIBILITY OF SUCH DAMAGE.
|
// POSSIBILITY OF SUCH DAMAGE.
|
||||||
//
|
//
|
||||||
// Created on: Wed Sep 20 11:47:24 CEST 2017
|
// Created on: Wed Sep 20 22:30:45 CEST 2017
|
||||||
// * spi_regs.h Author: <RDL Generator>
|
// * spi_regs.h Author: <RDL Generator>
|
||||||
//
|
//
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
// POSSIBILITY OF SUCH DAMAGE.
|
// POSSIBILITY OF SUCH DAMAGE.
|
||||||
//
|
//
|
||||||
// Created on: Wed Sep 20 11:47:24 CEST 2017
|
// Created on: Wed Sep 20 22:30:45 CEST 2017
|
||||||
// * uart_regs.h Author: <RDL Generator>
|
// * uart_regs.h Author: <RDL Generator>
|
||||||
//
|
//
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit 0ae9ca921a3c59f7f5e0cad119314e65bd50c327
|
Subproject commit 4bc26642e349906f6e81619ea8a26bf533c3f46f
|
Loading…
Reference in New Issue
Block a user