Assign a certain position to an object or a variable?

  • Thread starter Thread starter JamesU
  • Start date Start date
  • Tags Tags
    Position Variable
AI Thread Summary
To assign a position to an object or variable in a game developed for Texas Instrument calculators, understanding the assembly language (ASM) specific to the calculator model is crucial. For calculators prior to the TI-89, Z80 ASM is used, while the TI-89 and later models utilize 68k ASM. The TI-89 Titanium supports C programming, which is increasingly popular for game development on these devices. Compiling C programs must be done on a computer before transferring them to the calculator, as direct writing in the program editor is not sufficient. Tools like VTI (Virtual TI) can be used to test applications on a computer before deployment. The discussion emphasizes the importance of mastering one programming language rather than switching between multiple languages, as this can hinder programming proficiency.
JamesU
Gold Member
Messages
821
Reaction score
3
how could I assign a certain position to an object or a variable? I'm trying to make a game on my calc., and it uses an form of assembly. I want some keys to be able to move my charachter (which is an X)
 
Computer science news on Phys.org
So is ASM the flavor of the week? Why don't you actually settle on ONE language and do something useful with it. Jumping around from language to language isn't going to make you a better programmer. Ever heard of the expression: jack of all trades but master of none?

ASM in itself comes in many flavors based on the processor used. On the Texas Instrument calculators anything before the TI89 is Z80 ASM while the TI89 and greater is 68k ASM. If your have a TI89 or higher they actually have a C compiler that targets the processor.

Which calculator do you have?
 
does the 83/84 have the same proc type in it? the 83 came out with the 89, and the 84 is the new 83 type modle
 
The 83/84/85/86 all use the Z80
The 89/92 use the 68k
 
I have a TI-89 Titanium. I've never heard of a C compiler on it :confused:
 
Do I just write the C in the program editor? or do I have to change something first?
 
No, you have to compile the C program on your computer and then send it to your calculator.
 
um...what?
 
  • #10
yomamma said:
um...what?
If you have virtual TI all you have to do is hit F10 select your compiled app and that's it... simple.
 
  • #11
I don't have an F10. :frown:
 
Back
Top