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

Pages: 1 ... 153 154 [155] 156 157 ... 197
2311
TI-BASIC / Re: Finding the min of a matrix
« on: March 10, 2010, 11:37:51 pm »
You could also replace the [A](1,1 line with any value that is guaranteed to be higher than all elements of the matrix

2312
Humour and Jokes / Re: Funny #omnimaga quotes
« on: March 10, 2010, 10:33:44 pm »
Break the haiku chain
and you will face punishment.
Rickrolls must ensue.

2313
The Axe Parser Project / Re: Features Wishlist
« on: March 10, 2010, 10:31:00 pm »
Couldn't you easily write that yourself though? 

PS: Yay on the update ^^
Yes, but it would be way slower and more bloated. It would translate much more easily to a few ASM opcodes.

2314
The Axe Parser Project / Re: Features Wishlist
« on: March 10, 2010, 10:15:08 pm »
Another good feature would be a Fill( function, to quickly fill memory with a value. This could be especially useful in graphics where this must be done every frame, like if you want to clear part of the screen (such as after a Vertical command)

2315
Humour and Jokes / Re: Funny #omnimaga quotes
« on: March 10, 2010, 09:26:32 pm »
Six and eight and five
does not a good haiku make.
Silly lobster man.

2316
The Axe Parser Project / Re: Bug Reports
« on: March 10, 2010, 03:12:24 pm »
I think he meant that you can archive your source file so there is more RAM free to compile programs.

2317
Humour and Jokes / Re: Funny #omnimaga quotes
« on: March 09, 2010, 11:07:12 pm »
You cannot resist
to post in form of haiku.
Sorry to hear it.

2318
This is not a response to Ndless at all. How on earth could they develop and release a new Nspire revision in a couple weeks?

The old keypad should work on the new TI-Nspire numeric version.

The boot2 version is the same, so if we can find out the layout of the keyboard matrix on the new keypad, there might be an alternative key combination that is usable to downgrade.

2319
Some things that definitely need to be done, off the top of my head, are:
1) Linking support (probably through the TI-84+ keypad)
2) Using .tns files to load/save the ROM
3) Saving the RAM and processor state upon exit, and loading upon start
4) Various TI-89 hardware that I simply have not implemented yet

2320
Axe / Re: Routines
« on: March 08, 2010, 09:25:36 pm »
Another thing, Quigibo, I think you should note somewhere in your documentation that operations are evaluated left-to-right. Also, some of the example expressions in your optimization guide assume full order of operations.

2321
Axe / Re: Routines
« on: March 08, 2010, 09:10:56 pm »
Also, I made an implementation of the Collatz Conjecture, inspired by a recent XKCD comic:
Code: [Select]
:9001->A
:Disp A>Dec,i
:Repeat A=1 or getKey
:If A^2
:A*3+1->A
:Else
:A/2->A
:End
:Disp A>Dec,i
:End

2322
Axe / Re: Routines
« on: March 08, 2010, 09:02:21 pm »
umm... do you mean the value of the address becomes the expression?  I think the other way around is the expected behavior, no?

I'm pretty confident this won't change.  I know that I might in the future add something to store 16 bit numbers into 2 consecutive bytes, but I think that will use a different syntax anyway.
I meant that if you do 1->{L6}, the result (to be used by further operations) will be L6.

2323
Try the fix calc84 wrote.
Which can be found here

2324
Axe / Re: Routines
« on: March 06, 2010, 11:30:02 pm »
Quigibo, I have a question. Currently, when you store to an address, the value of the expression becomes the address. Is this behavior ever planned to change, or can I safely use it for optimization?

2325
Axe / Re: Routines
« on: March 06, 2010, 08:46:58 pm »
I think in one of the topics he said there would be commands to switch to 15MHz and back (which will do nothing on the TI-83+) -- Full and Normal iirc

Pages: 1 ... 153 154 [155] 156 157 ... 197