Changeset 215 for soft/giet_vm/xml/xml_driver.c
- Timestamp:
- Sep 17, 2012, 10:47:46 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/xml/xml_driver.c
r204 r215 57 57 const char* periph_type[] = 58 58 { 59 "ICU", 60 "TIM", 61 "XICU", 62 "DMA", 59 63 "IOC", 60 64 "TTY", 61 "TIM",62 "DMA",63 65 "FBF", 64 66 "NIC", … … 220 222 fprintf( fpout, "<mapping_info signature = \"0x%x\" ", header->signature); 221 223 fprintf( fpout, " name = \"%s\" ", header->name); 222 fprintf( fpout, " clusters = \"%d\" ", header->clusters); 224 fprintf( fpout, " cluster_x = \"%d\" ", header->cluster_x); 225 fprintf( fpout, " cluster_y = \"%d\" ", header->cluster_y); 223 226 fprintf( fpout, " vspaces = \"%d\" >\n\n", header->vspaces); 224 227 … … 241 244 ///////////////////// processors ///////////////////////////////////////////// 242 245 246 unsigned int proc_index = 0; 243 247 for ( proc_id = cluster[cluster_id].proc_offset ; 244 248 proc_id < cluster[cluster_id].proc_offset + cluster[cluster_id].procs ; 245 249 proc_id++ ) 246 250 { 247 fprintf( fpout, " <proc index = \"%d\" >\n", proc_i d);251 fprintf( fpout, " <proc index = \"%d\" >\n", proc_index); 248 252 for ( irq_id = proc[proc_id].irq_offset ; 249 253 irq_id < proc[proc_id].irq_offset + proc[proc_id].irqs ;
Note: See TracChangeset
for help on using the changeset viewer.