Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
ASM
#1
I was reading my TI Graphing calculator book and i was reading the programming section and it said that you can use ASM in Calculator basic and from what i hear that would make the programs a TON faster. The thing is and yes I know this is very newbish but what is ASM and were can i learn how to use this?
his world has been connected...
Tied to the darkness.
Soon to be completely eclipsed.
There is so very much to learn...
You understand so little.
A meaningless effort.
One who knows nothing can understand nothing.
-Ansem Bringer of darkness and creator of the heartless
Reply
#2
Assembly (ASM) is like readable machine code: that is, it is, each cpu instruction is represented as a line of code. TI83 machine code looks something like this:

ftp://ftp.ti.com/pub/graph-ti/calc-apps/...sm83ex.z80

there are tons more tutorials, information, and downloads for TI calculators at http://ticalc.org
Reply
#3
i dont know if you know anything about getting a rom image but i cant seem to get it to work when i try runnin the romdump.exe it brings up a dos window then i goes away very quickly
his world has been connected...
Tied to the darkness.
Soon to be completely eclipsed.
There is so very much to learn...
You understand so little.
A meaningless effort.
One who knows nothing can understand nothing.
-Ansem Bringer of darkness and creator of the heartless
Reply
#4
I'm not quite sure what you're doing, but try doing this:
go to start
click 'run'
type 'cmd'
click 'ok'
that should bring up a command prompt
navigate to the folder that contains romdump.exe like this:
"cd <full path>"
e.g.
"cd c:\windows\system32\"

if it was in c:\windows\system32\

then type 'romdump' and see what message is displayed.
Reply
#5
what do you do for the port when you use a usb
also when i run rom83 on the calc i get a syntax error
his world has been connected...
Tied to the darkness.
Soon to be completely eclipsed.
There is so very much to learn...
You understand so little.
A meaningless effort.
One who knows nothing can understand nothing.
-Ansem Bringer of darkness and creator of the heartless
Reply
#6
I'm not sure - I do not program assembly for TI calculators. Check the forums at ticalc.org, there are more people there who know what they are doing.
Reply
#7
Alright well i figured it out but it wasnt worth it. I tried writin asm on the calc but all i got was my ram bein reset about 5 times and i lost my OS. So i think ill start on the comp would somone explain asm on the comp or direct me to a good tut on it?
his world has been connected...
Tied to the darkness.
Soon to be completely eclipsed.
There is so very much to learn...
You understand so little.
A meaningless effort.
One who knows nothing can understand nothing.
-Ansem Bringer of darkness and creator of the heartless
Reply
#8
Computer ASM is no different than calculator assembly (the syntax, anyway). You can actually use the same compiler (assembler, whatever) if it supports z80 architecture and x86.

MASM, NASM, TASM are all names I've heard thrown around in the past. I don't know which one is good or not though, I don't really do straight up assembly.

this is google product, don't know if it's any good, but it's thorough:
http://www.geocities.com/SiliconValley/P...les01.html

you can also play with asm code using fb. It won't assemble complete files, but you can inject little bits of ASM into your code like this

x = 4
ASM
mov eax, [x]
add eax, 2
mov [x], eax
END ASM

I'm not really sure if that will make it crash and burn though.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)