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

Pages: 1 ... 12 13 [14] 15 16 ... 24
196
TI-Nspire / Re: wacky fun random numbar generator for nspire! ;D
« on: September 04, 2010, 02:18:31 pm »
Nice. Another port! Quick, let us port this to all available platforms! Make a z80 and m68k version of the WFRNG OS! ;D
Congrats on the feature though.
I won't repeat myself ;D

Whoops, I missed that.

I could write a program version in 68k C (a port that I don't think we've had yet)... but I have no clue how to make a 68k OS.

197
TI-Nspire / Re: wacky fun random numbar generator for nspire! ;D
« on: September 04, 2010, 09:27:34 am »
Now we just need a WFRNG OS for a calculator, to complement the one Michael Vincent wrote for the computer...

198
TI Z80 / Re: ques
« on: August 28, 2010, 01:07:04 pm »
Is there a reason why this topic is now called "ques"?

It's like what happened when Spybot45 used to get screwed up- except for real in the actual forum...

199
Other Calc-Related Projects and Ideas / Re: Solar89 SDK
« on: August 26, 2010, 04:26:12 pm »
Well, the Omega symbol, the $ symbol, and probably others of those hard-to-reach tokens are all documented on the Misc Tokens page on TI|BD.

I can't seem to find the arrow there, though. So if you want to help, you could put that token in a program, maybe format it like this (_ = the token):

Code: [Select]
:ARROW
:_

And then just send it to a computer and upload it. Using a hex editor, I could look at it to see what the token code is.

I could do this myself if I had a z80 with a working link port, but even then I don't know how to access that token, so...

200
Other Calc-Related Projects and Ideas / Re: Solar89 SDK
« on: August 26, 2010, 10:16:41 am »
I think their ASCII code is available in ASM in 28 days near the end.

Nice to see new updates ^^ I also like how you can do programs for multiple calc models. It should make porting much easier.

Also we're soon gonna have a downloads section too so you're gonna be able to upload your stuff there too :)

Ah- found it. But it's not the ASCII code I need, it's the token code I need. The two are different. (ASCII characters are used as part of tokens, and some are tokens, but their codes won't necessarily match up).

And yeah, I'm looking forward to the Omnimaga downloads section. I'm also going to upload it to ticalc.org, of course, but I wanted to wait for that until I had all the 83+ tokens supported and there were no obvious bugs (but for that, I need other people to test it).

201
Congratulations bwang, apcalc, and Hot_Dog!

202
Humour and Jokes / Re: Question
« on: August 21, 2010, 11:26:32 pm »
A Google search didn't turn up anything about such a game either.

Where did you hear of it?

203
News / Re: SpyBot45 Cemetech & UTI notifications disabled
« on: August 21, 2010, 08:20:45 pm »
Could a link to Cemetech be added somewhere on the site, then? You see, what I've been doing was to go to Omnimaga, then use a link in OmnomIRC to jump to Cemetech in a new tab. It more convenient than opening two tabs and going to both sites...

204
that wasn't me that asked about assembly on the nspire, that was someone else. Their response to that was 'itll ruin your calculator cuz the developers dont know what their doin and they might crash it.'... well they did say it would "ruin your calculator"
Indeed, that's why I quoted graphmastur (the person who asked about it) and not you. ;) And I was referring to this post by him in the other topic:

I won't put the e-mail in yet, but basically, the person suggested to their superiors about releasing the source code of the os, and they should get back to me.

205
The cake is a lie! The farthest you'll get is a supervisor, an e-mail supposedly sent to the dev team. Which may or may not get back to you. Good luck, though.
So I guess you never got a response to your last message to TI, the one about adding assembly to the Nspire?

206
Other Calc-Related Projects and Ideas / Re: Solar89 SDK
« on: August 20, 2010, 07:13:49 pm »
Beta v0.2 has been released! I've uploaded it to the Cemetech Archives here (since I prefer uploading to a downloads database than just attaching to a post, and also because I don't want to post it on ticalc.org until I'm sure it's bugfree).

In addition to the new tokens, the bugfix, and the argument-passing, here are the other changes:

-I modified BinPac8x to make *.85p files (changed the file and variable type)

-I added some error handling code in make8xp; it prints a message explaining that the file path and/or name is incorrect and then waits for a keypress, rather than just printing the Python exception and exiting (especially important if running by double-clicking rather than the command-line).

-I fixed another bug where all tokens starting with a space ended up with an extra space at the front of the name

207
Other Calc-Related Projects and Ideas / Re: Solar89 SDK
« on: August 20, 2010, 12:41:26 pm »
Weird, I hope you can manage to fix it x.x

Me too. ;) No luck so far though.

EDIT: That was rather ironic. I fixed it just after I posted that I was having no luck with it! ;D The problem was pretty simple- I wasn't allocating enough memory to the array containing the tokenized line. Or, rather, there was enough for the line itself... but not enough for the hard return token afterwards too.

So I was overwriting some memory on the calculator, hence a corrupt heap (what I got when I installed KerNO on TiEmu).

Quote
Btw, will you support some of the hard to reach ASCII tokens? In Illusiat 13, for example, I use the Omega symbol, the arrow before the Frac command but alone, the $ symbol, etc.

I'll support them- as long as their hex codes are documented somewhere (otherwise, of course, I can't support them).

208
Calculator C / Re: Issues with \0 character
« on: August 20, 2010, 12:03:02 pm »
Well, memcpy isn't exactly working, because it doesn't append the bytes to the array like strncat does. This means that only the last line of a program will be written to a file.

Is there a way to do this, or would I have to do it manually using a for loop of some sort?

EDIT: Well, I got it working using a for loop that increments the pointer, so I guess I've answered my own question for once.

Code: [Select]
numswaps = tokenizeString(line, tokline, tokens);
for (i = 0; i < numswaps; ++i)
    *(output++) = tokline[i];

209
Other Calc-Related Projects and Ideas / Re: Solar89 SDK
« on: August 18, 2010, 06:58:39 pm »
Another update: all user variable tokens and statistics tokens are now supported.

Unfortunately, I've discovered a bug- if you have more than 15 tokens on a line, the program freezes after execution. (I assume this occurs with the currently posted version too). Tested only in TiEmu thus far, but I'd guess it happens on-calc as well.

I'm not sure why, or even what kind of problems could cause this, but I'll fix it before I release 0.2.

210
The Axe Parser Project / Re: Axiom SDK For Developers
« on: August 18, 2010, 06:43:23 pm »
Could we host it on here? That would be nice, in case eem's server crashed and he lost it. It might be the only copy left!
Only online copy, anyway- you can still download it from ticalc.org in html and chm format.

Pages: 1 ... 12 13 [14] 15 16 ... 24