blob: bafc5935449e27539ed73a06e703cdf97ec52fb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
function InsertPeripheralInList(Peripheral,PeripheralListFile)
// -----------------------------------------------------------------
// Insert input peripheral in peripherals' list
//
// Input data:
// Peripheral: Peripheral of type 'list' to be instertd in list
// PeripheralListFile: Name of file containing list of peripheral used
//
// Output data:
// None
//
// Author: Siddhesh Wani
// -----------------------------------------------------------------
load(PeripheralListFile,'PheripheralList');
endfunction
|