Changeset 262 for soft/giet_vm/giet_xml/xml_parser.c
- Timestamp:
- Dec 14, 2013, 8:39:48 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_xml/xml_parser.c
r258 r262 1545 1545 printf(" type = %s\n", str); 1546 1546 #endif 1547 if ( strcmp(str, "HARD") == 0 ) irq[irq_index]->type = 0;1548 else if ( strcmp(str, "SOFT") == 0 ) irq[irq_index]->type = 1;1549 else if ( strcmp(str, "TIME") == 0 ) irq[irq_index]->type = 2;1547 if ( strcmp(str, "HARD") == 0 ) irq[irq_index]->type = IRQ_TYPE_HWI; 1548 else if ( strcmp(str, "SOFT") == 0 ) irq[irq_index]->type = IRQ_TYPE_SWI; 1549 else if ( strcmp(str, "TIME") == 0 ) irq[irq_index]->type = IRQ_TYPE_PTI; 1550 1550 else 1551 1551 {
Note: See TracChangeset
for help on using the changeset viewer.