home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / comp / sys / atari / 8bit / 5588 < prev    next >
Encoding:
Internet Message Format  |  1992-12-15  |  797 b 

  1. Path: sparky!uunet!portal!cup.portal.com!Rick_Michael_Cortese
  2. From: Rick_Michael_Cortese@cup.portal.com
  3. Newsgroups: comp.sys.atari.8bit
  4. Subject: Re: Need Action! help
  5. Message-ID: <71728@cup.portal.com>
  6. Date: Tue, 15 Dec 92 08:06:46 PST
  7. Organization: The Portal System (TM)
  8. References:  <1992Dec14.212850.8900@neb>
  9. Lines: 21
  10.  
  11. It would be perfect since even if you only had one drive, all someone with
  12. a SDX cart would have to do is shut off the drive during boot, but Mucking
  13. around commercal software, most just send the machine into an endless loop.
  14. something like:
  15.  LOOP
  16.   JMP LOOP
  17. If the start-up conditions are not met so if it's a password, bad sector, ???
  18. you can just:
  19.  
  20. PROC Infinity()
  21.  DO
  22.  OD
  23. RETURN
  24. PROC Main()
  25. <Blah, Blah, Blah>
  26. IF condition=0
  27.  THEN
  28.   Infinity()
  29. FI
  30. <More Blah??>
  31. RETURN
  32.