home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / programming / wackytalky_2 / Developer / Examples / 1st_Look / WithLIB / CLIcommnds < prev    next >
Encoding:
Text File  |  1996-03-21  |  743 b   |  17 lines

  1. ;===================================================================
  2. ;===================  CLI command definitions  =====================
  3. ____________________________________________________________________
  4.  
  5. .WT_CLI_Definitions%
  6.                FNcommand("TestCLI",TestCLI,&ff0001,TestCLI_S,TestCLI_H)
  7.                ;.... more command definitions
  8.                z     ; no more command definitions
  9.  
  10. .TestCLI_H     s% "*<r2> is a command for testing." 13
  11. .TestCLI_S     z% "Syntax:; *<r2> <anyting!>"
  12.            ;  remove this ^ character from the above line
  13. ____________________________________________________________________
  14. .TestCLI       push 6-11,14
  15.                pop
  16. ____________________________________________________________________
  17.