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.


Topics - Deep Toaster

Pages: 1 ... 15 16 [17] 18
242
TI Z80 / Simul v1.2
« on: August 05, 2010, 11:19:20 pm »
After 42 days away from my calculator, I found that the super-optimized (read totally uncommented) program that six weeks ago was supposed to be my Axe contest entry now makes almost no sense to me whatsoever. And so as I attempt to figure out what I was trying to do, here's a quick project announcement:

First of all, it's called Fourplay. This is only a working name, and it'll definitely change ;D

BASICally, it's Pong. It's also Falldown, Keepin, and Avoid (very original, as you can see already ;)). It starts with a very basic version of one of those games (just like thousands of other programs out there). Then it cycles through them randomly at random intervals, and if you lose one, you lose (still like hundreds of others).

Then it gets interesting. After a while, you start playing two games at once, then four (on split screens). Meanwhile, the speed gets faster. It gets really interesting when you start having to use both thumbs and forefingers to play :D

I don't have a link cable, so the only thing I can show you is the back-buffer ;)


243
Humour and Jokes / The best xkcd ever (NOT a rickroll)!
« on: August 01, 2010, 08:23:05 am »

244
Other Calculators / Weird Wabbit wariables
« on: July 28, 2010, 10:00:25 am »
I've been using WabbitEmu a lot recently, and I noticed that under Variables, there's are two programs called ! and #, respectively. They don't show up in the program list or in Mem Mgmt/Del..., but when I created a program to list the programs, they showed up, so they apparently do exist.

Anyone know what they are? Are they on every (real) calculator, or is it just something on the emulator ???

245
Site Feedback and Questions / Something weird going on...
« on: July 25, 2010, 10:49:44 am »
Two weird things I've been noticing about this topic recently. First, the new posts aren't appearing (I use email notifications with text included, and it seems there are at least one or two pages of posts that I can't find anywhere :(), and when I tried adding a reply, it went just as always, but the post didn't show up either in the topic or in the New Posts list (or in OmnomIRC). It doesn't seem to be locked, though.

Also, someone seems to be enjoying rating down posts recently, especially in that topic :-\

246
TI-BASIC / Nspire lists
« on: July 05, 2010, 11:25:02 pm »
I just started coding Nspire BASIC, and it's been pretty easy since there are many areas where it's similar to TI-83 Plus BASIC. What I couldn't figure out, though, was how to access the elements of a list. I tried the 83+ syntax of parvar(3) where parvar is the list, but it only multiplies the list by three.

I've finished the program I was working on by using a combination of sum( and mid, as in sum(mid(parvar,3,1)), which, as you can probably tell, is really unoptimized, since it's basically taking the sum of a 1-element subset of the list, but it's the only way I've found to get what I want. It doesn't really matter, though, since the Nspire's speed more than accounts for the horrible improvisation, but I'm still wondering: Is there a way to access the list element directly? There aren't many guides on Nspire BASIC out there, and none of them explain lists very well.

247
So I've decided that I have to try running Ubuntu off of a flash drive (I'm getting tired of having Vista all the time :P). But before I do that, I have to make sure of something, and seeing that many people here use Linux (especially after seeing the Post Your Desktop thread), I decided to ask about it here: If I were to boot Linux from my thumb drive, would it affect my computer's drives in any way (in other words, the next time I turn on the computer, can it boot Windows normally with no change to it)? (Sorry if this seems like an obvious question, but I have no idea with computers :-[)

248
Okay, so I understand now that compiled ASM programs start with token $BB6D, which is generally copied to address $9D95 for execution (of the program ;)). But what if .org is followed by some other number, like $8000? How does the calculator know where to copy the program?

EDIT: In other words, where does the assembler store the .org number? I tried different .org's in the OTBP assembler, but they all seem to do the same thing.

249
Axe / Braces
« on: June 26, 2010, 12:41:43 am »
I don't really understand Axe's indirection function yet. {L1} and {L1+12} compile to the same amount of memory, so I'm guessing the compiler substitutes the actual value of L1 or L1+12, but that's all I can figure out. Can anyone answer these questions for me?

1. Can I use a variable inside the braces (e.g. {L1+Z*4+12})?
2. If the answer to #1 is YES, would it be more optimized to do {Z*4+L1+12} instead?
3. Can I use braces within braces (e.g. {L1+{L1+12}+24})?
4. If the answer to #3 is YES, do the nested braces act as parentheses (i.e., it's read as {L1+({L1+12})+24})?

Thanks.

EDIT: Just realized that I should have titled this topic "Braces".

250
Miscellaneous / Forums (in)activity
« on: June 14, 2010, 07:52:54 pm »
I just noticed a drop in posting activity today. For those of you in high school, is everyone taking finals, or are we already gone on vacation?

251
Humour and Jokes / [Idea] Necropost Day
« on: June 07, 2010, 07:49:39 pm »
From now on, the _____ of _____ of every year shall be known as Necropost Day. On this day, members are encouraged to post in topics at least one (1) year dormant if possible. If this is not possible, any topic deemed dead by popular consent may be substituted.

Good idea? ;D

252
General Calculator Help / Just curious...
« on: June 06, 2010, 07:06:59 pm »
I don't really need to know this, since I've given up ASM anyway, but I never understood a certain concept, and it's still haunting me every day. :( So a calculator copies a program, whether it's assembly or BASIC, to $9D95 to call it, right? So what happens when there's a subroutine? How does it run that?

Just curious.

253
Introduce Yourself! / 42
« on: June 04, 2010, 07:01:53 pm »
Hello, world. I am DEEP THOUGHT. I got my graphing calculator (a TI-83 Plus named Graphite :)) three years ago, but even by then, I had already been programming in TI-BASIC for several months (on my teachers' calculators). I actually joined Omnimaga on May 19th of last year, but I didn't make a single post until a whole year later, which is also about the time I registered on Cemetech and UnitedTI and started my (calculator-related, of course) blog. TI-BASIC was my first programming language, as it probably is for many of the members of this forum, and it taught me the basics of programming. Later, I tried (and failed) to learn TI-ASM, but I've given that up after discovering Axe Parser.

254
Axe / Storage help?
« on: June 03, 2010, 07:36:06 pm »
I am really new at Axe, and I can't figure out how variable storage works. I have the following code:

Code: [Select]
:DiagnosticOff
:ClrHome
:"vMine"→Str1
:GetCalc(Str1)→A
:!If A
:GetCalc(Str1,3)→A
:ΔList(10,10,10)→{A}
:End

When compiling, Axe gives my an ERR: BAD SYMBOL.

Sorry if this is something obvious, but what did I do wrong?

255
TI-BASIC / Group memory check
« on: May 31, 2010, 03:40:00 pm »
Not necessarily a BASIC programming routine; just a helpful tip.

Sometimes, when I'm working on an on-calculator project which I occasionally "save" by storing the variables to a group, I need to check whether I already saved the current version. For example, I might be working on project "A", but want to switch to project "B", but don't know whether the group containing project "A" is the newest version or the old version from a few days ago. Instead of deleting and regrouping the files, which might be a complete waste of flash memory if the group was the newest version anyway, I found that, assuming the update changed the amount of RAM a variable takes up, the amount of memory a group takes up is equal to the sum of all its constituent (I like this word :)) variables, plus the length of the name of the group, plus 9. For example, if project "A" is comprised (I like this word also :)) of a program of 2624 bytes, a list of 12 bytes, and a string of 208 bytes, and if group *A takes up 2734 bytes, I'd know that I didn't save the updated variables (since 2624+12+208+1+9≠2734).

Pages: 1 ... 15 16 [17] 18