Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - bb010g

Pages: 1 ... 32 33 [34]
496
HP Calculators / Re: HP Prime Emulator!!!
« on: August 07, 2013, 04:22:54 pm »
You can give a RGB[A] value to drawing functions. For example, you can do this for a colored hello world:
Code: [Select]
EXPORT hello_world()
BEGIN
RECT();
TEXTOUT_P("Hello World!",50,50,0,RGB(0,136,204));
FREEZE;
END;

497
Casio Calculators / Re: Mass Storage for Prizm
« on: December 18, 2012, 05:35:06 pm »
I'm working on compiling and run Linux with a terminal emulator. (Linux itself is extremely small, the Linux From Scratch team got a basic Apache web server running with 8 MB of disk space.) Everything except for what is essential to boot and mount would be on external storage (including swap).

498
Casio Calculators / Mass Storage for Prizm
« on: December 18, 2012, 10:19:15 am »
I was wondering if it would be possible to make the Prizm interface with a USB thumb drive or other mass storage device. It would be useful because the Prizm only has 16 MiB of storage available, and a project I'm working on would need more (at least the ability to mount it and use it mid-program).

Pages: 1 ... 32 33 [34]