home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.sys.hp48
- Path: sparky!uunet!zaphod.mps.ohio-state.edu!sdd.hp.com!ux1.cso.uiuc.edu!news.cs.indiana.edu!uceng.uc.edu!rabagley
- From: rabagley@uceng.UC.EDU (Ross A Bagley)
- Subject: Fast User RPN mkstr (IR Remote)
- Message-ID: <1992Jul24.194053.19308@uceng.UC.EDU>
- Organization: College of Engineering, University of Cincinnati
- Date: Fri, 24 Jul 1992 19:40:53 GMT
- Lines: 57
-
- As the subject: line says, it's a fast user RPN makestring program that is
- useful for those of us who like to screw around with the hp48 as an IR remote.
-
- Times are comparable to the times quoted for the string builder in the tools
- library ($50). My times are: 1500 char string, .8255 seconds (the size
- recommended for the IR remote); 10000 character string, 1.3483 seconds (the
- ML version in the tools lib. quotes "less than a second"); 32750 character
- string, 2.9450 seconds (about the largest string I could convince it to make).
-
- I don't know all of the syntax needed in order to make it downloadable (I
- don't know what the header is supposed to look like) and using the PC link
- would delay this until Tuesday at the earliest. If someone in the know would
- please edit the header, correct any other syntax errors I make typing this
- in and repost it (making sure to keep the copyright notice intact :-) I
- would greatly appreciate it.
-
- BYTES gives us:
- # 53005d
- 200
-
- Here goes...
- ----PROGRAM (cut here)------------
- \>>
- SWAP 2 / DUP IP DUP
- 3 ROLL - NEG
- IF 2 *
- THEN " " " "
- ELSE "" " "
- END 3 ROLL DUP
- WHILE
- REPEAT 2 / DUP IP DUP
- 3 ROLL - NEG
- IF 2 *
- THEN 2 ROLL DUP 4 ROLL +
- ELSE 2 ROLL 3 ROLL
- END
- 2 ROLL DUP + 3
- ROLL DUP
- END
- DROP DROP
- \>>
- ---END OF PROGRAM (cut here)------------
- ---COPYRIGHT NOTICE-----------
- COPYRIGHT (C) Ross Bagley 7/24/92
- (I officially declare this program freeware. It may be distributed, copied,
- modified, etc... I only ask that this notice remain with the program. If you
- feel obligated to send money, contact me at rabagley@uceng.uc.edu to get an
- address. Thanks)
- ---END OF COPYRIGHT-----------
- -- ______________________________________
- _______ | |
- /\______\ | rabagley@uceng.uc.edu |
- / / ___ /_____ ______ ______ | |
- / / /_\/ /______\\_____\\_____\ | Sex appeal is 50% what you've got |
- / / _ __// ___ // ___// ___/ | and 50% what people think you've |
- / / / \ \ / /_\/ //___ //___ / | got. -Murphy |
- \/_/ \_\\_____//_____//_____/ |____________________________________|
-