Post Reply 
HP48 Character Bitmaps
11-08-2018, 06:51 PM (This post was last modified: 11-08-2018 11:23 PM by DavidM.)
Post: #10
RE: HP48 Character Bitmaps
(11-08-2018 06:41 PM)TomC Wrote:  DavidM:

Looks most promising! Thank you very much - I'll report back - soon I hope!

TomC

I grabbed some snippets of code from other projects to throw that together -- it strikes me that you could streamline the process by storing the char grob into PICT and make this a nested loop (instead of repeatedly storing each column into PICT separately). That would probably make it a little faster and possibly shorter as well.

I'll probably play around with this some more as well when I get a moment. My implementation above has lots of room for improvement.

(edit) Here's a smaller/faster version of the c2r program:
Code:
\<<
  2 \->GROB
  PICT STO
  0 5 FOR col
    ""
    7 0 FOR row
      col R\->B row R\->B 2 \->LIST
      PIX? "**" "  " IFTE
      +
    -1 STEP
  NEXT
\>>
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
HP48 Character Bitmaps - TomC - 11-07-2018, 04:23 AM
RE: HP48 Character Bitmaps - Chris Dreher - 11-07-2018, 06:19 AM
RE: HP48 Character Bitmaps - TomC - 11-07-2018, 08:56 PM
RE: HP48 Character Bitmaps - EugeneNine - 11-07-2018, 10:50 PM
RE: HP48 Character Bitmaps - acoto - 11-08-2018, 01:12 AM
RE: HP48 Character Bitmaps - DavidM - 11-08-2018, 03:06 PM
RE: HP48 Character Bitmaps - TomC - 11-08-2018, 06:41 PM
RE: HP48 Character Bitmaps - DavidM - 11-08-2018 06:51 PM
RE: HP48 Character Bitmaps - TomC - 11-09-2018, 06:55 AM



User(s) browsing this thread: 1 Guest(s)