📄 address.m
字号:
function addr=address(cc,symname)
%ADDRESS returns the address value for specified a target symbol
% A = ADDRESS(CC,SYM) Returns the address of SYM, which is a string
% representation of the desired symbol. If the specified symbol is not
% found, a warning is generated and A is empty. Note, this method
% returns only the first occurance of the specified symbol (SYM) from
% the symbol table. This method is only applicable after loading the
% desired program file. The return value A is a 2 element numeric
% array with the symbols offset and page. This return value can be
% used directly as an input to the address field of CC.READ and
% CC.WRITE.
%
% Return value:
% A(1) - Address offset
% A(2) - Page
%
% For example:
% >cc.read(cc.address('coef'),5,'int32')
% returns the first 5 members of a target's array called 'coef'.
%
% See also DEC2HEX, LOAD, SYMBOL.
% Copyright 2001-2002 The MathWorks, Inc.
% $Revision: 1.5 $ $Date: 2002/06/12 15:30:49 $
error(nargchk(2,2,nargin));
if ~ishandle(cc),
error('First Parameter must be a CCSDSP Handle.');
end
addr = ccsmexswitchyard([18,cc.boardnum,cc.procnum,0,0],symname);
% [EOF] address.m
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -