- SM84CE's ICE Programs
- 03 Dec 2017 07:32:23 pm
- Last edited by SM84CE on 28 Jun 2018 12:48:34 pm; edited 11 times in total
SM84CE's ICE Programs
TempCheck CE ICE -- A remake of my TI-BASIC Temperature Checker, now with fullscreen! It's made with ICE (DUH!) and has a few more features, compared to the BASIC version.
VirusCheck CE ICE -- A remake of my TI-BASIC VirusChecker, now with fullscreen! It's made with ICE (DUH!) and has a few more features, compared to the TI-BASIC version.
CC21: Diwali -- My CC21 Entry, thread here. Description: This is a spin-off of the Lights-Out series of games, but currently has a 3x3 board, and no "win" detection. There is a small Easter Egg included to "light up" your day! Instructions are in-game in the Intro screen. I will also be updating this as time goes by, so check back here often!
[url=]PT_ Waker Upper CE[/url] -- This is a port of Michael2_3B's site, https://michael2-3b.github.io/PT_WakerUpper Enough said! Try it out!
Connect-4 ICE: IN PROGRESS -- the famous Connect-4, written in ICE. Dev thread here
I need help on how to use AppVars, When I try to write something to an AppVar, the calc crashes. To ease my recovery, I integrated SRC archiving into the compiled program, just FYI. Here's the code:
EDIT: FIXED, see below
Code:
PROGRAM:AVSRC
[i]APPVAR
det(0
det(5,151 //to add color
sum(0
sum(2,"AVSRC","r",5->SRC
sum(2,"AVSRC","r",5->SRC //for safety
sum(13,1,SRC
sum(3,SRC
sum(1,"SM84CE","w+"->SM
sum(1,"SM84CE","w+"->SM // safety
sum(11,1024,SM
sum(13,1,SM //problem starts here?
sum(1,"SM83CE","w+"->SMB
sum(1,"SM83CE","w+"->SMB
sum(11,64,SMB
sum(4,"APPVAR TEST",11,1,SMB //I'd use lowercase, but I don't know how to adjust the count, or even if this line is written right
sum(0
det(1
If this works, I could make my charge date manager in ICE...
EDIT:
Should have done only one opening of the file
Code:
PROGRAM:AVSRC
[i]APPVAR
det(0
det(5,151 //to add color
sum(0
sum(2,"AVSRC","r",5->SRC
sum(13,1,SRC
sum(3,SRC
sum(1,"SM84CE","w+"->SM
sum(11,1024,SM
sum(13,1,SM
sum(1,"SM83CE","w+"->SMB
sum(11,64,SMB
sum(4,"APPVAR TEST",11,1,SMB //I'd use lowercase, but I don't know how to adjust the count, or even if this line is written right
sum(0
det(1
Now to figure out the count and size of writing lowercase to an appvar...[/b]