symbol.m

来自「一个MATLAB的应用程序」· M 代码 · 共 19 行

M
19
字号
function symtab=symbol(cc)
%SYMBOL Reads the target's entire symbol table from Code Composer(tm).
%  S = SYMBOL(CC) Returns the entire symbol table as an array of 
%  structures for the most recently loaded program.  This method
%  is only applicable after loading the target's program file.  If 
%  the symbol table does not exist, a warning is generated and S is 
%  empty. The element 'address' in the returned structure array can 
%  be used directly as an input to the address field of CC.READ and 
%  CC.WRITE.
%
%  Return value:
%  S(n).name        - String with symbol name
%  S(n).address(1)  - Address offset of symbol
%  S(n).address(2)  - Page of symbol
%
%  See also DEC2HEX, LOAD, ADDRESS.

% Copyright 2002 The MathWorks, Inc.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?