home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / forth / compiler / fpc / tutor / l1p076 < prev    next >
Text File  |  1990-05-16  |  2KB  |  49 lines

  1.        ╔══════════════════════════════════════════════════════╗
  2.        ║  Lesson 1 Part 7.6  F-PC 3.5 Tutorial by Jack Brown  ║
  3.        ╚══════════════════════════════════════════════════════╝
  4.  
  5.                   ┌────────────────────┐
  6.                   │  Crashing  Forth   │
  7.                   └────────────────────┘
  8.  
  9. More Crash Techniques from Chapter 11 of the F-PC user manual
  10.  
  11. Type " -1 @ ".  It will crash the AT system.  However, AT can still be
  12. rebooted by Ctrl- Alt-Del.  It does not affect PC or XT.
  13.  
  14. Type " -1 ! ".  It will crash the AT system for good.  You will have to
  15. recycle power, if you don't have that hardware reset button on your
  16. computer.
  17.  
  18. Type " >R ".  It works every time.
  19.  
  20. Store anything into your dictionary in the Code Segment.  You can use !,
  21. but that's not bold enough.  Use ERASE, FILL, BLANK, or CMOVE.
  22.  
  23. Store anything into the DOS area below the Code Segment.  It will
  24. probably not affect F- PC.  However, wait until you say 'BYE'.  Ms. DOS
  25. will lay the computer down flat.
  26.  
  27. Store anything into the dictionary in the  Head Segment.  F-PC will
  28. still say 'ok', but it will not recognized words you type in.  You will
  29. get the 'What?' message.
  30.  
  31. Store anything into the dictionary in the List Segment.
  32.  
  33. Do a " 0 0 DO ... LOOP ".  If you have anything useful in this loop,
  34. F-PC will spend a long, long time doing it for you.  You might just as
  35. well assume the system crashed and do a reset. (You can do a warm
  36. restart by pressing the Control-Break key.)
  37.  
  38. Build a large loop without balancing the stacks inside the loop.
  39.  
  40. Print a binary file on your printer.  You may not totally crash the
  41. computer, but a bucketful of paper shooting through the printer at 10
  42. miles per hour is an impressive sight.
  43.  
  44. Do a " TYPE " without parameters.
  45.  
  46. ┌──────────────────────────────────┐
  47. │  Please move to Lesson 1 Part 8  │
  48. └──────────────────────────────────┘
  49.