source: PlatformSupport/WARP_Toolbox/WARP Blockset/slblocks.m

Last change on this file was 1065, checked in by sgupta, 16 years ago

Creating new WARP Blockset/Toolbox

File size: 547 bytes
Line 
1function blkStruct = slblocks
2%SLBLOCKS Defines the Simulink library block representation
3%   for the XtremeDSP kit blocks.
4
5blkStruct.Name    = ['WARP'];
6blkStruct.OpenFcn = 'WARP_Blockset';
7blkStruct.MaskInitialization = '';
8
9blkStruct.MaskDisplay = ['disp(''Rice University WARP'')'];
10
11% Define the library list for the Simulink Library browser.
12% Return the name of the library model and the name for it
13%
14Browser(1).Library = 'WARP_Blockset';
15Browser(1).Name    = 'WARP';
16
17blkStruct.Browser = Browser;
18
19% End of slblocks.m
Note: See TracBrowser for help on using the repository browser.