Changeset 559


Ignore:
Timestamp:
Apr 13, 2015, 5:32:14 PM (9 years ago)
Author:
alain
Message:

Introducing support for MWMR coprocessors.

Location:
soft/giet_vm/giet_xml
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/giet_xml/mapping_info.h

    r548 r559  
    121121    MWR_SUBTYPE_GCD       = 0,
    122122    MWR_SUBTYPE_DCT       = 1,
     123    MWR_SUBTYPE_CPY       = 2,
    123124};
    124125
  • soft/giet_vm/giet_xml/xml_driver.c

    r548 r559  
    7272        "GCD",
    7373        "DCT",
     74        "CPY",
    7475    };
    7576
  • soft/giet_vm/giet_xml/xml_parser.c

    r548 r559  
    10891089            else if (strcmp(subtype, "DCT") == 0)
    10901090            periph[periph_index]->subtype = MWR_SUBTYPE_DCT;
     1091            else if (strcmp(subtype, "CPY") == 0)
     1092            periph[periph_index]->subtype = MWR_SUBTYPE_CPY;
    10911093        }
    10921094        else
Note: See TracChangeset for help on using the changeset viewer.