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 - calcdude84se

Pages: 1 ... 94 95 [96] 97 98 ... 161
1426
Axe / Re: please help me with appvariables
« on: August 17, 2010, 03:12:17 pm »
Oh, my bad x.x
I'm afraid not, though I might if I ever do other hardware stuff.
What kind of bug is there now?

1427
Axe / Re: please help me with appvariables
« on: August 17, 2010, 02:20:37 pm »
Attachment?
What do you mean? For the credits?

1428
Axe / Re: MaskConverter
« on: August 17, 2010, 02:16:49 pm »
You can use Mono on Linux ;D
I'll try it out later :)

1429
Computer Programming / Re: Brainfuck Programs
« on: August 17, 2010, 02:14:12 pm »
Haha, nice. Where does the memory pointer start, so we can be sure not to corrupt RAM?

1430
Axe / Re: please help me with appvariables
« on: August 17, 2010, 02:10:38 pm »
That'll be my first time in the credits of... anything O_O
* calcdude is honored :D
I think I'll try out the updated version after it's on ticalc.org ;D

1431
Axe / Re: please help me with appvariables
« on: August 17, 2010, 01:35:52 pm »
Yeah we can't work with GDB's, not to mention they are in a very specific format and are used to store window settings and equations. Storing two pics just wouldn't work :P
Good luck! :)

1432
Axe / Re: please help me with appvariables
« on: August 17, 2010, 01:25:55 pm »
GDB's? We can't access those in Axe yet, so I'll assume you mean groups.
Groups, however, are for multiple variables, and we can't write them.
So let's do it with appvars :)
(Note that we could save it to a Pic, actually, though we'd either use two pics or use a non-standardly large one (If you RecallPic these in BASIC, only the first 768 bytes are drawn)
So let's call the appvar appvETCHSAVE. This example writes L3 and L6 to the appvar if it doesn't exist or is in RAM
Code: [Select]
"appvETCHSAVE"->Str0
If GetCalc(Str0,Y0)
.Check if it's in the archive. Make sure you aren't using Y0
Disp "APPV ARCHIVED
Return
End
.The following line will create it if it doesn't already exist, and recreate it otherwise
!If GetCalc(Str0,1536)->X
.Check if there was enough room for the appvar to be created
Disp "OUT OF MEMORY
Return
End
.1536 is 768*2, or the size of both buffers
Copy(L6,X,768
Copy(L3,X+768,768
.Copy L6 and then L3 into the appvar. Each buffer is 768 bytes in size
Return
If you need to archive it, (I recommend not to in order to save wear and tear on flash, but that's up to you) use
Code: [Select]
Archive Str0Which will Archive the appvar if there was enough free archive and return 1, or return 0 if there wasn't enough archive space.

1433
Axe / Re: Project Snake X - help
« on: August 17, 2010, 12:46:12 pm »
Oh, disqualified? Poor Snake_X :(
Well, we can still help you make a great game, even if not for the contest :)

1434
Axe / Re: Project Snake X - help
« on: August 16, 2010, 09:13:01 pm »
What he's saying is that you're setting it and immediately after checking it.
Either eliminate the condition or move the 1->X to where it belongs, outside the first conditional. (Almost certainly the latter)

1435
Humour and Jokes / Re: That's some good timing I had there :O
« on: August 16, 2010, 06:21:32 pm »
Not now. :P
Lobsteritis was spreading throughout the community earlier, though. ;D

1436
Humour and Jokes / Re: Funny #omnimaga quotes (NSFW)
« on: August 16, 2010, 05:07:51 pm »
lol :P

1437
The Axe Parser Project / Re: Features Wishlist
« on: August 16, 2010, 10:20:50 am »
If it is an app (I don't know), he probably copied code to RAM and executed it from there.

1438
The Axe Parser Project / Re: Features Wishlist
« on: August 16, 2010, 08:54:38 am »
Break and continue can both be done with Goto's, though official support that allows us not to use Lbl's would be nice.
Basically, seconded :)

1439
Other Calculators / Re: TI-84+ SE = TI-83+ SE?
« on: August 15, 2010, 08:25:34 pm »
Wait, what do you mean? An archive-reset 84+SE has ~1.6 (or ~1.7, I forget) MB archive.
Unless TI changed the paging system (yeah right :P), that can't be possible, since double of 1.6 is 3.2, and an 84+SE (and an 83+SE) has 2 MB flash ROM.
Maybe you mean something different? ???

1440
Other Calculators / Re: TI-84+ SE = TI-83+ SE?
« on: August 15, 2010, 08:19:02 pm »
For the 84+SE the only hardware difference to my knowledge from the 84+ is that it has more archive, like you said. It actually has twice as much, though much of that is used by the OS.

Pages: 1 ... 94 95 [96] 97 98 ... 161