Search found 7 matches

by QuantumTorpedo
Fri 13 May, 2005 12:46 am
Forum: Programming Help
Topic: [TI BASIC] Turn off run indicator in BASIC?
Replies: 30
Views: 18055

Run Indicator

Yeah, BASIC alone can't turn it off. The specific ROM call for this is: b_call(_RunIndicOff) To turn back on: b_call(_RunIndicOn) Assuming you know how to create ASM programs. I'm unfamiliar with the ASM libraries around so there might be one you can use for this without the need to compile anything.
by QuantumTorpedo
Sat 02 Apr, 2005 5:51 pm
Forum: Program Ideas
Topic: Interpreted Language?
Replies: 10
Views: 8176

Cool, thanks for the links

*starts using search function*
by QuantumTorpedo
Sat 02 Apr, 2005 1:34 am
Forum: Program Ideas
Topic: Interpreted Language?
Replies: 10
Views: 8176

Interpreted Language?

Just wondering if there is a Java-like interpreted language available for calculators, or maybe one thats being worked on?

Not that I need one, I just thought that would be a nice idea :)
by QuantumTorpedo
Fri 25 Mar, 2005 1:19 am
Forum: Programming Help
Topic: [TI ASM] Random Integer
Replies: 41
Views: 14535

Suggests?, we started down the road to philosophical debate. :lol: Yeah, noticed that, these posts have become interesting! Having a little knowledge in C++ programming, I know that there is a function called srand() that when called in the fashion: srand(time(0)); int randomNumber = rand(); Initia...
by QuantumTorpedo
Thu 24 Mar, 2005 9:45 pm
Forum: Programming Help
Topic: [TI ASM] Random Integer
Replies: 41
Views: 14535

Thank you all for your suggestions. The original ionRandom routine will do just fine, because I need to randomize to more than 10 numbers, and since it is gonna be called as a subprogram from BASIC using the r register should be random enough. Didn't know you could set the random seed on a calc, ama...
by QuantumTorpedo
Tue 22 Mar, 2005 9:53 pm
Forum: Programming Help
Topic: [TI ASM] Random Integer
Replies: 41
Views: 14535

Thanks

Thank you for your replies. Right now, I don't have any intentions to use ION with my programs, but your routine will be helpful!
by QuantumTorpedo
Tue 22 Mar, 2005 1:53 am
Forum: Programming Help
Topic: [TI ASM] Random Integer
Replies: 41
Views: 14535

[TI ASM] Random Integer

Hello, I am fairly new to ASM programming, and am in the process of using ASM subroutines as a part of my existing BASIC programs for the TI-83+. My question is, is there any better way to do the following code without floating point numbers and all these b_calls. I know there is a register R that c...