Nemonicosmplab.pdf

Embed Size (px)

Citation preview

  • 8/13/2019 Nemonicosmplab.pdf

    1/5

  • 8/13/2019 Nemonicosmplab.pdf

    2/5

  • 8/13/2019 Nemonicosmplab.pdf

    3/5

  • 8/13/2019 Nemonicosmplab.pdf

    4/5

  • 8/13/2019 Nemonicosmplab.pdf

    5/5

    ASCII Character Set

    MPLIBUsage FormatMPLIB object librarian is invoked with the following syntax:

    mplib [/q] /{ctdrx} LIBRARY [MEMBER...]

    options:

    MPLIB Usage ExamplesSuppose a library named dsp.libis to be created from three object modulesnamed fft.o, fir.oand iir.o. The following command line would produce the

    desired results:

    mplib /c dsp.lib fft.o fir.o iir.o

    To display the names of the object modules contained in a library file namesdsp.lib, the following command line would be appropriate:

    mplib /t dsp.lib

    Most Significant Character

    Hex 2 3 4 5 6 7

    Least

    SignificantCharacter

    0 Space 0 @ P ` p

    1 SOH DC1 ! 1 A Q a q2 STX DC2 " 2 B R b r

    3 ETX DC3 # 3 C S c s

    4 EOT DC4 $ 4 D T d t

    5 ENQ NAK % 5 E U e u

    6 ACK SYN & 6 F V f v

    7 Bell ETB ' 7 G W g w

    8 BS CAN ( 8 H X h x

    9 HT EM ) 9 I Y i y

    A LF SUB * : J Z j zB VT ESC + ; K [ k {

    C FF FS , < L \ l |

    D CR GS = M ] m }

    E SO RS . > N ^ n ~

    F SI US / ? O _ o DEL

    /c create library; creates a new LIBRARY with the listedMEMBER(s)

    /t list members; prints a table showing the names of the membersin the LIBRARY

    /d delete member; deletes MEMBER(s) from the LIBRARY; if noMEMBER is specified the LIBRARY is not altered

    /r add/replace member; if MEMBER(s) exist in the LIBRARY, then they

    are replaced, otherwise MEMBER is appendedto the end of the LIBRARY

    /x extract member; if MEMBER(s) exist in the LIBRARY, then theyare extracted. If no MEMBER is specified, allmembers will be extracted

    /q quiet mode; no output is displayed