home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / forth / compiler / fpc / tcom / debugger / tdbgbscs.hlp < prev    next >
Text File  |  1990-09-11  |  1KB  |  37 lines

  1. TDBGBSCS.HLP     Help for TDBGBSCS.SEQ
  2.  
  3.  
  4. Some definitions of communication protocol characters....
  5.  
  6. listen-up  byte sent before any command
  7. go-ahead   byte returned in response to "listen-up"
  8. hi-there   byte sent to see if target is listening
  9. I'm-here   byte returned in response to "hi-there"
  10.  
  11.  
  12. tdbg-hello ( -- ) This defines the startup message that gets displayed
  13.                   initially if there is nothing on the DOS command line
  14.  
  15. purge ( -- )  clear out the buffer and any pending communications
  16.  
  17. go-wait  ( -- )   used after sending a "listen-up" before sending a command
  18.  
  19. command  ( command-to-do  -- )
  20.     send the command along with the necessary prior handshaking
  21.  
  22. getbyte ( -- b ) get a byte value from the comm port
  23.         This is used a lot by higher level TDBG words
  24.  
  25. getword ( -- w ) get a word value from the comm port
  26.         This is used a lot by higher level TDBG words
  27.  
  28. sendword ( -- w ) send a word value to the comm port
  29.  
  30. .ns ( n -- ) display a number without a space following
  31.         This is useful for formatting dates and times
  32.  
  33. jumpto ( addr -- )  make target jump to addr
  34.         Normally the target code can execute a RET and return to the
  35.         way it was running before this command.
  36.  
  37.