Changeset 140 for trunk/platforms/tsarv4_vgmn_generic_32
- Timestamp:
- Mar 9, 2011, 4:11:43 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/platforms/tsarv4_vgmn_generic_32/tsarv4_vgmn_generic_32_top.cpp
r134 r140 372 372 373 373 // IRQ signals (one signal per proc) 374 sc_signal<bool>*** 375 alloc_elems<sc_signal<bool> >("signal_proc_it",xmax, ymax, nprocs);374 sc_signal<bool>**** signal_proc_it = 375 alloc_elems<sc_signal<bool> >("signal_proc_it", 1,xmax, ymax, nprocs); 376 376 377 377 sc_signal<bool>* signal_irq_mtty = … … 539 539 IntTab(cluster(x,y), PROC_SRCID+p), // SRCID_C 540 540 IntTab(cluster(x,y), PROC_SRCID+p), // TGTID_C 541 1,1, 541 542 4,64,16,4,64,16 // Icache and Dcache sizes 542 543 ,4,8,16 … … 715 716 proc[x][y][p]->p_vci_ini_c (signal_vci_ini_c_proc[x][y][p]); 716 717 proc[x][y][p]->p_vci_tgt (signal_vci_tgt_c_proc[x][y][p]); 717 proc[x][y][p]->p_irq[0] (signal_proc_it[x][y][p]);718 proc[x][y][p]->p_irq[0][0] (signal_proc_it[0][x][y][p]); 718 719 for ( size_t j = 1 ; j < 6 ; j++ ) 719 720 { 720 proc[x][y][p]->p_irq[ j] (signal_false);721 proc[x][y][p]->p_irq[0][j] (signal_false); 721 722 } 722 723 } … … 728 729 for ( size_t p = 0 ; p < nprocs ; p++ ) 729 730 { 730 xicu[x][y]->p_irq[p] (signal_proc_it[ x][y][p]);731 xicu[x][y]->p_irq[p] (signal_proc_it[0][x][y][p]); 731 732 } 732 733
Note: See TracChangeset
for help on using the changeset viewer.