home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / comp / sys / cbm / 5202 < prev    next >
Encoding:
Internet Message Format  |  1992-12-23  |  1.9 KB

  1. Path: sparky!uunet!spool.mu.edu!uwm.edu!linac!att!cbnewsc!cbfsb!att-out!oucsboss!oucsace!tratclif
  2. From: tratclif@oucsace.cs.ohiou.edu (Tracy Ratcliff)
  3. Newsgroups: comp.sys.cbm
  4. Subject: Re: CS-DOS etc...
  5. Message-ID: <1992Dec23.220949.8534@oucsace.cs.ohiou.edu>
  6. Date: 23 Dec 92 22:09:49 GMT
  7. References: <1992Dec23.133431.1@kosmos.wcc.govt.nz>
  8. Organization: Ohio University CS Dept,. Athens
  9. Lines: 42
  10.  
  11. In article <1992Dec23.133431.1@kosmos.wcc.govt.nz> mcmillan_a@kosmos.wcc.govt.nz writes:
  12. >Many thanks to those who offered help with creating .sfx files. (Not .sda)
  13. >I'm a little further ahead, but still not having much luck... C Smeets must
  14. >get first prize for writing the most contrived, user-hostile program I've ever
  15. >seen!
  16. >
  17. You've never tried UNIX or MS-DOS? or more to this group, Power C (ick, don't
  18. get me started)?
  19. >After running the 'shell' program, I enter the command;
  20. >lha -s a:test.sfx a:title a:<any_program_name>
  21. >
  22. >The program resonds:
  23. >LHARChive creator for CS-DOS v1.10 - (C)opyright 1990 C. Smeets
  24. >REU in use
  25. >
  26. >And that's all!  No .sfx file created, and I can repeat this over and over...
  27.  
  28. From the file lha.txt, line 84 (i.e. if you do 'get lha.txt' it would be at
  29. line 1840 and following):
  30.  
  31. ...you have to tell LHA what part of the 1750 is free to be used for its
  32. purposes.  Do this by putting a line something like this in your autoexec
  33. file
  34.  
  35.           poke dec("1bcf"), x*16+y
  36.      
  37.      where x is the lowest 1750 bank that can be used, and y is the highest
  38. 1750 bank plus one.  For example,
  39.  
  40.           poke dec("1bcf"), 4*16+7
  41.  
  42. tells LHA it's OK to use 1750 banks 4,5, and 6.  All other banks are 
  43. left alone.
  44.  
  45. I tried poking 0 to $1bcf and it caused the 'REU in use' error message.  Since
  46. you're trying to make .sfx files you only need to reserve one bank.  In my 
  47. setup I use 1750 (well, actually 1700) bank 0 as the csdos ramdisk and bank 1
  48. for LHA space, like this:
  49.  
  50.           poke 7119, 1*16+2
  51.  
  52. That help?
  53.