Changeset 960


Ignore:
Timestamp:
Mar 27, 2015, 5:34:26 PM (9 years ago)
Author:
alain
Message:

Introduce (nbprocs <= 4) check in arch.py

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/platforms/tsar_generic_leti/arch.py

    r954 r960  
    7171    ### parameters checking
    7272
    73     assert( nb_procs <= (1 << p_width) )
     73    assert( nb_procs <= 4 )
    7474
    7575    assert( x_size <= (1 << x_width) )
     
    205205                                         size = xcu_size, ptype = 'XCU',
    206206                                         channels = nb_procs * irq_per_proc,
    207                                          arg0 = 16, arg1 = 16, arg2 = 16, arg3 = 16 )
     207                                         arg0 = 16, arg1 = 16, arg2 = 16 )
    208208
    209209                mapping.addIrq( xcu, index = 8, isrtype = 'ISR_MMC' )
Note: See TracChangeset for help on using the changeset viewer.