home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / PROG / MISC / ZEN1_10.ZIP / ZEN.DOC < prev    next >
Encoding:
Text File  |  1989-12-31  |  1.6 KB  |  36 lines

  1. 0 ( - 0)          fast zero
  2. 1 ( - 1)          fast one
  3. >< ( u - u2)      reverse the bytes within a word.
  4. 'TYPE             i/o transfer vectors in order:
  5.                   'TYPE '?KEY' CR 'PAGE 'CORO 'MARK 'BEEP 'SPARE
  6. BEEP              audible alert.
  7. CELL ( - 2)       address units per cell
  8. CRLF ( - a)       end of line sequence
  9. CSEG ( - seg)     push code segment register.
  10. DIGIT ( c base - n t | ? 0)
  11.                   true if the char c is a valid digit in the given base.
  12. DPL ( - a)        decimal point locator
  13. DSEG ( - seg)     push data segment register.
  14. DUMB              initialize all IO commands for dumb terminal.
  15. L@ ( off seg - w) read word at segment:offset.
  16. L! ( w off seg)   write word to segment:offset.
  17. LC@ ( off seg - b)
  18.                   fetch byte value at segment:offset.
  19. LC! ( w off seg)  store lower byte value at segment:offset.
  20. LCMOVE ( off seg off2 seg2 u)
  21.                   move u bytes from seg:off to seg:off2, leftmost byte first
  22. MARK ( a n)       like TYPE but highlight if possible.
  23. MX ( - a)         transfer to cooperative multitasker.
  24. NOOP              does nothing
  25. NOT ( w - w2)     Forth-83 NOT
  26. OFF ( a)          store false at address
  27. ON ( a)           store true at address
  28. PAUSE             entry to cooperative multitasker.
  29. PFA ( cfa - pfa)  convert execution token into parameter field address.
  30. PLACE ( a n a2)   store packed string at address a2.
  31. TRUE ( - -1)      fast Boolean true
  32. VAL? ( a u - d 2 , n 1 , 0)
  33.                   string to number conversion primitive.
  34.                   True if d is valid.
  35.  
  36.