Changeset 140 for trunk/platforms/tsarv4_dspin_generic_32
- Timestamp:
- Mar 9, 2011, 4:11:43 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/platforms/tsarv4_dspin_generic_32/tsarv4_dspin_generic_32_top.cpp
r134 r140 370 370 // IRQ signals (one signal per proc) 371 371 372 sc_signal<bool>*** 373 alloc_elems<sc_signal<bool> >("signal_proc_it",xmax, ymax, nprocs);372 sc_signal<bool>**** signal_proc_it = 373 alloc_elems<sc_signal<bool> >("signal_proc_it", 1,xmax, ymax, nprocs); 374 374 375 375 sc_signal<bool>* signal_irq_mtty = … … 548 548 IntTab(cluster(x,y),PROC_SRCID+p), // SRCID_C 549 549 IntTab(cluster(x,y),PROC_SRCID+p), // TGTID_C 550 1,1, 550 551 4,64,16,4,64,16, // Icache and Dcache sizes 551 552 4,8,16); … … 743 744 proc[x][y][p]->p_vci_ini_c (signal_vci_ini_c_proc[x][y][p]); 744 745 proc[x][y][p]->p_vci_tgt (signal_vci_tgt_c_proc[x][y][p]); 745 proc[x][y][p]->p_irq[0] (signal_proc_it[x][y][p]);746 proc[x][y][p]->p_irq[0][0] (signal_proc_it[0][x][y][p]); 746 747 for ( size_t j = 1 ; j < 6 ; j++ ) 747 748 { 748 proc[x][y][p]->p_irq[ j] (signal_false);749 proc[x][y][p]->p_irq[0][j] (signal_false); 749 750 } 750 751 } … … 756 757 for ( size_t p = 0 ; p < nprocs ; p++ ) 757 758 { 758 xicu[x][y]->p_irq[p] (signal_proc_it[ x][y][p]);759 xicu[x][y]->p_irq[p] (signal_proc_it[0][x][y][p]); 759 760 } 760 761
Note: See TracChangeset
for help on using the changeset viewer.