Changeset 958
- Timestamp:
- Mar 26, 2015, 5:49:04 PM (10 years ago)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/reconfiguration/platforms/tsar_generic_iob/scripts/arch.py
r927 r958 167 167 168 168 mapping.addPeriph('FBF', base=fbf_base, size=fbf_size, 169 ptype='FBF', arg =fbf_width)169 ptype='FBF', arg0=fbf_width, arg1=fbf_width) 170 170 171 171 mapping.addPeriph('SIM', base=sim_base, size=sim_size, … … 211 211 size=xcu_size, ptype='XCU', 212 212 channels=nb_procs * IRQ_PER_PROC, 213 arg =16)213 arg0=16, arg1=16, arg2=16) 214 214 215 215 # MMC IRQ replicated in all clusters -
trunk/platforms/tsar_mono_fpga/arch.py
r957 r958 160 160 xcu = mapping.addPeriph( 'XCU', base = xcu_base, size = xcu_size, 161 161 ptype = 'XCU', channels = nb_procs * irq_per_proc, 162 arg = 16 )162 arg0 = 16, arg1 = 16, arg2 = 16 ) 163 163 164 164 mmc = mapping.addPeriph( 'MMC', base = mmc_base, size = mmc_size, … … 183 183 184 184 fbf = mapping.addPeriph( 'FBF', base = fbf_base, size = fbf_size, 185 ptype = 'FBF', arg = fbf_width)185 ptype = 'FBF', arg0 = fbf_width , arg1 = fbf_width) 186 186 187 187 ###################################
Note: See TracChangeset
for help on using the changeset viewer.