home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / sys / hp48 / 5653 < prev    next >
Encoding:
Internet Message Format  |  1992-11-09  |  2.5 KB

  1. Path: sparky!uunet!ogicse!hp-cv!hp-pcd!hpcvra!rnews!hpcvbbs!akcs.n2kyw
  2. From: akcs.n2kyw@hpcvbbs.cv.hp.com (Paul Smith)
  3. Newsgroups: comp.sys.hp48
  4. Subject: Re: HP28 speedup woes
  5. Message-ID: <2aff3903.2076.2comp.sys.hp48.1@hpcvbbs.cv.hp.com>
  6. Date: 10 Nov 92 04:40:02 GMT
  7. Article-I.D.: hpcvbbs.2aff3903.2076.2comp.sys.hp48.1
  8. References: <4210@sicsun.epfl.ch> <wachter.720974529@tardis62>
  9. Lines: 57
  10.  
  11. With regards to the 'speedup' program for the hp28 (not 48), I
  12. have another version (I dont know who wrote it) which may be a
  13. little more flexible than the one posted earlier.. In this one
  14. the user can set the speed (instead of just using max speed) and
  15. I dont believe it stops having effect when ON-C is pressed (but
  16. I'm not sure...I dont have the 28 any more).
  17.  
  18. Anyway, here's the listing.  Hope it comes in handy.
  19. Paul Smith
  20. smit3223@nova.gmi.edu
  21. ---------------------------------------------------------------------
  22.  
  23.  
  24.  
  25. This is a program which will allow you to set the speed of the hp28
  26. from about 10% to about 200%.  This is nice in that it allows faster
  27. plotting of graphs, faster number crunching, etc.  However, an
  28. increase in speed corresponds to an increase in battery drain.  But,
  29. if you think about it, this means a decrease in speed corresponds to a
  30. decrease in battery drain, and if you don't mind the inconvenience of
  31. slowness, this may be handy for a low-power application.
  32.  
  33. Keep in mind that the system clock may be affected as well - (auto-
  34. shut off delay, time program (if you have it), beep frequency, etc).
  35. Also keep in mind that this program may be version-dependant and may
  36. not work on particular versions of hp28. (May result in memory loss).
  37.  
  38. The program is called SPEED.  Once it is entered into your 28, put an
  39. integer between 0 and 15 inclusive on the stack and press SPEED, and
  40. the speed of the system clock will be set accordingly. (7 is the
  41. normal setting.) Anything other than these values has all but the last
  42. four bits masked, so for example, 16 is equivalent to 0 (or MOD 16).
  43. Type this in CAREFULLY- an error in typing may result in memory loss,
  44. so make a backup first.  Use lower-case where you see it here.
  45.  
  46. << 'SPEED' -> s n
  47.    << PATH RCWS 64 STWS
  48.       s R->B #Fh AND
  49.       #1000000000000h *
  50.       #C600302331DFFBCh OR
  51.       { #E60D51FFF00F1h
  52.         #C808461241131h } +
  53.       HOME n RCL SWAP n PURGE
  54.       n STO #DFFB7h SYSEVAL
  55.       n STO STWS ->STR 3 OVER
  56.       SIZE 2 - SUB STR->
  57.    >>
  58. >>
  59.  
  60. 'SPEED'  STO
  61.  
  62. I didn't write this program, but I have used it and it works.
  63.  
  64. Have fun!
  65.  
  66. Paul Smith
  67. smit3223@nova.gmi.edu
  68. nova{smit3223}66%
  69.