CEMETECH
Leading The Way To The Future
Login [Register]
Username:
Password:
Autologin:

Don't have an account? Register now to chat, post, use our tools, and much more.
Latest Headlines
Online Users
There are 117 users online: 3 members, 84 guests and 30 bots.
Members: Ashbad.
Bots: VoilaBot (1), Spinn3r (1), MSN/Bing (1), Magpie Crawler (3), VoilaBot (3), Googlebot (20), MSN/Bing (1).
RSS & Social Media
SAX
You must log in to view the SAX chat widget
Author Message
KermMartian


Site Admin


Joined: 14 Mar 2005
Posts: 55763
Location: Earth, Sol, Milky Way

Posted: 11 Mar 2012 02:33:44 pm    Post subject: How Do I Put Games on my Casio Prizm?

I've noticed that a lot of visitors are searching for Casio Prizm games or the steps to put programs on their Prizm color-screen graphing calculators, so here's the simple three-step method of getting games on your Prizm.

Step 1: Find the game that you want, such as from Cemetech's archive of Prizm games. Unzip the zip archive, and find the all files ending in .g3*.

Step 2: Plug your Prizm into your computer with a MiniUSB cable. On the Prizm's screen, a menu will pop up; press F1 to make your Prizm look like a flash drive to your computer.

Step 3: Copy all the .g3* files into your calculator, which will appear as a Removable Drive in My Computer (if you're on Windows) or in the Finder (if you're using a Mac). Any .g3a files should go in the root (main folder) of the drive. All other files should go in @MainMem/PROGRAM.

That's it! Feel free to post if you have any questions.
_________________


Back to top
graphmastur


Power User


Joined: 27 Jul 2010
Posts: 464

Posted: 11 Mar 2012 02:48:40 pm    Post subject:

What are the program's extensions? Also, what about .g3b/p?
Back to top
Purobaz


Advanced Newbie


Joined: 26 Nov 2011
Posts: 67
Location: France

Posted: 11 Mar 2012 02:58:43 pm    Post subject:

.g3p is a picture and .g3b is a collection of pictures like a .gif.
You can read a .g3p with PictPlot.g3a from Casio.


I think it would be great to add 2 folders in the prizm/games archives. One for .g3a (C programs) and the other one for .g3m (basic programs).
_________________
Back to top
gbl08ma


Power User


Joined: 26 Nov 2011
Posts: 476
Location: Portugal

Posted: 11 Mar 2012 03:03:56 pm    Post subject:

Ummm... and just not to let Windows and Mac OSX be the only operating systems mentioned, on Linux the Prizm also appears as a USB flashdrive which you can manage using the filemanager of your choice or just the command line Wink
Basically, by pressing F1, the Prizm will turn into a 16MB pendrive; if you're connecting it to your computer or a digital photo frame, it doesn't matter Smile
_________________
My blog, where I write about random things... | tiny URL shortener
View JPEG images on your Prizm | Utilities for the Casio Prizm - clock, stopwatch, calendar/agenda, add-in manager and more!
Back to top
KermMartian


Site Admin


Joined: 14 Mar 2005
Posts: 55763
Location: Earth, Sol, Milky Way

Posted: 11 Mar 2012 03:14:03 pm    Post subject:

gbl08ma wrote:
Basically, by pressing F1, the Prizm will turn into a 16MB pendrive; if you're connecting it to your computer or a digital photo frame, it doesn't matter
But of course! I guess I was sort of assuming that if you use Linux, you know enough to load games onto your Prizm without a guide. Wink
_________________


Back to top
AHelper


LONG LIVE COMICTECH


Joined: 30 Jan 2011
Posts: 1661
Location: Aufhelperstan, Utopian Republic

Posted: 11 Mar 2012 03:14:58 pm    Post subject:

Purobaz wrote:
I think it would be great to add 2 folders in the prizm/games archives. One for .g3a (C programs) and the other one for .g3m (basic programs).


I second this idea.
_________________
°ᴥ° Get Lucky

<BrandonW> "You don't even want to know what TI Connect does when it's just detecting your calculator...It ACTUALLY ERASES THE SWAP SECTOR on every communication attempt...EVERY SINGLE ATTEMPT...Yes, TI Connect will kill your calculator..What do I have to do to get your attention?!....Such a bloated protocol."
Back to top
seana11


Super-Expert


Joined: 23 May 2011
Posts: 833
Location: Well, the sign says "You are here"...

Posted: 11 Mar 2012 03:16:09 pm    Post subject:

The instructions are a bit different for linux. Think of the prizm as an oversized flash drive; essentialy, these instructions are for flash drives in general as well. Step 1 and 3 are the same, but there's a step 4, and step 2 is different.

Step 2: Become root.
Make a new directory to mount the prizm to. The traditional places are /mnt and /media. I'll be using /media/prizm.
Run the command

Code:
dmesg|tail -n 30

and look for something like

Code:
[1363449.596735] scsi 25:0:0:0: Direct-Access     CASIO    ColorGraph       1.00 PQ: 0 ANSI: 0 CCS
[1363449.597567] sd 25:0:0:0: Attached scsi generic sg2 type 0
[1363449.598063] sd 25:0:0:0: [sdb] 32915 512-byte logical blocks: (16.8 MB/16.0 MiB)

The [sdb] bit is what you want. It may be different depending on your computer. The actual device is /dev/whatever1, where whatever is what you got from dmesg. So my device would be called /dev/sdb1
Run the command

Code:
mount -f vfat /dev/sdb1 /media/prizm

substituting the values you got earlier.

Note: This will only allow you to use the filesystem if you are root. To transfer the files normally (recommended) use

Code:
mount uid=user gid=user -f vfat /dev/sdb1 /media/prizm

where user is your username

Another Note: The calc disconnects after a minute if you don't mount it, so it may take a few tries.

Step 4: After you've copied the files, linux hasn't actualy written anything to the calc yet. To tell it that we're done with the device, and that it should write all the changes, run the command

Code:
umount /media/prizm

Note: it's umount NOT unmount

Another Note: You may need to press AC/ON on the prizm to make it disconnect
_________________

Code:
-----BEGIN GEEK CODE BLOCK-----
GCS d- s+: a---@ C+++ UL++ P L+++ E- W++ N o? K? w--- O? M--
V- PS++(--) PE- Y+ PGP t 5? X(+) R tv-- b++(+++) DI+(++)
D(+) G e-(*)>++@ h! r!>+++ y?
------END GEEK CODE BLOCK------
decoded
Back to top
gbl08ma


Power User


Joined: 26 Nov 2011
Posts: 476
Location: Portugal

Posted: 11 Mar 2012 06:26:02 pm    Post subject:

I use Ubuntu, and for me the Prizm has been always automatically mounted as a USB flashdrive. I see no need for those complicated commands unless you use the bare kernel (i.e. not a distro) or a distro that's so minimalistic that doesn't even provide a GUI tool for mounting filesystems, if it doesn't do it automatically (which is what most distros do nowadays).

On many popular distros I find that you no longer need to be root to mount (at least some) filesystems.

When you "eject" (umount+USB turnoff) that flashdrive, the Prizm recognizes that as well, no need for pressing AC/ON.
_________________
My blog, where I write about random things... | tiny URL shortener
View JPEG images on your Prizm | Utilities for the Casio Prizm - clock, stopwatch, calendar/agenda, add-in manager and more!
Back to top
graphmastur


Power User


Joined: 27 Jul 2010
Posts: 464

Posted: 11 Mar 2012 07:10:36 pm    Post subject:

gbl08ma wrote:

When you "eject" (umount+USB turnoff) that flashdrive, the Prizm recognizes that as well, no need for pressing AC/ON.

seana11 wrote:

Another Note: You may need to press AC/ON on the prizm to make it disconnect

Little word... very important. The prizm doesn't always recognize an eject for whatever reason. I've only had it fail to do so once, though, and I can't reproduce the error.
Back to top
seana11


Super-Expert


Joined: 23 May 2011
Posts: 833
Location: Well, the sign says "You are here"...

Posted: 11 Mar 2012 08:38:41 pm    Post subject:

gbl08ma wrote:
I use Ubuntu, and for me the Prizm has been always automatically mounted as a USB flashdrive.


You have fstab set up, then. Some users may not.

gbl08ma wrote:
I see no need for those complicated commands unless you use the bare kernel (i.e. not a distro) or a distro that's so minimalistic that doesn't even provide a GUI tool for mounting filesystems


The gui may differ, but the commands will always be the same.
_________________

Code:
-----BEGIN GEEK CODE BLOCK-----
GCS d- s+: a---@ C+++ UL++ P L+++ E- W++ N o? K? w--- O? M--
V- PS++(--) PE- Y+ PGP t 5? X(+) R tv-- b++(+++) DI+(++)
D(+) G e-(*)>++@ h! r!>+++ y?
------END GEEK CODE BLOCK------
decoded
Back to top
Display posts from previous:   
Register to Join the Conversation
Have your own thoughts to add to this or any other topic? Want to ask a question, offer a suggestion, share your own programs and projects, upload a file to the file archives, get help with calculator and computer programming, or simply chat with like-minded coders and tech and calculator enthusiasts via the site-wide AJAX SAX widget? Registration for a free Cemetech account only takes a minute.

» Go to Registration page
    »
» View previous topic :: View next topic  
Page 1 of 1 » All times are GMT - 5 Hours

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

© Copyright 2000-2013 Cemetech & Kerm Martian :: Page Execution Time: 0.037301 seconds.