ASM Resource

A General Discussion forum for TI calculators

Moderator: MaxCoderz Staff

tifreak8x
Sir Posts-A-Lot
Posts: 297
Joined: Mon 11 Jul, 2005 4:42 pm
Location: Indiana
Contact:

Post by tifreak8x »

kv83 wrote:This doesn't fit into Programming Help. Therefor moved.
Well, it is to help people, so that is why I put it there. I am sorry that I didn't get it in the right spot, thanks for movin it. :)

Thanks for the link, I will add it soon.
http://tifreakware.net - Connecting TI communities
tifreak8x
Sir Posts-A-Lot
Posts: 297
Joined: Mon 11 Jul, 2005 4:42 pm
Location: Indiana
Contact:

Post by tifreak8x »

Added:

:Catagory:
Routines

:Routines:
API Macros

:Tutorials:
Two's Complement

Anyone have some cool routines they would like me to add/promote. :)
http://tifreakware.net - Connecting TI communities
Gambit
Sir Posts-A-Lot
Posts: 252
Joined: Mon 21 Feb, 2005 5:34 am
Location: Laveen, Arizona

Post by Gambit »

I have linked to this many times, and am surprised it isn't on here (yet):

http://www.ticalc.org/archives/files/fi ... 24750.html

It's probably a "General Tutorial" item or something, since it has both 68K and Z80 protocol information.

And you might want to consider linking to Directory Mozilla's Freeware Editors page, just for some variety :wink:.

edit: On that note, I didn't know this was here: http://dmoz.org/Computers/Hardware/Calc ... lculators/ :o
"If SOURCE is outlawed, only outlaws will have SOURCE."
User avatar
KermMartian
Calc Wizard
Posts: 549
Joined: Tue 05 Jul, 2005 11:28 pm
Contact:

Post by KermMartian »

Yeah, I've found that first link really helpful for SourceCoder. :)
Image Image Image
tifreak8x
Sir Posts-A-Lot
Posts: 297
Joined: Mon 11 Jul, 2005 4:42 pm
Location: Indiana
Contact:

Post by tifreak8x »

Thanks, I will add them to the to-do list for this weekend... :)
http://tifreakware.net - Connecting TI communities
User avatar
KermMartian
Calc Wizard
Posts: 549
Joined: Tue 05 Jul, 2005 11:28 pm
Contact:

Post by KermMartian »

Good good. I hope ticalc.org mentions that page at some point!
Image Image Image
Gambit
Sir Posts-A-Lot
Posts: 252
Joined: Mon 21 Feb, 2005 5:34 am
Location: Laveen, Arizona

Post by Gambit »

I was doing some research, and look at what I found:

http://en.wikibooks.org/wiki/TI_83_Plus_Assembly

Does anyone know who 'Nilsmo' is?
"If SOURCE is outlawed, only outlaws will have SOURCE."
User avatar
Timendus
Calc King
Posts: 1729
Joined: Sun 23 Jan, 2005 12:37 am
Location: Netherlands
Contact:

Post by Timendus »

That's funny... :)
I wouldn't add it as a tutorial though, since it has only three chapters, and more importantly his "Hello world" program will crash your calc :P

Code: Select all

.NOLIST
#define   EQU   .equ
#define   equ   .equ
#define   END   .end
#define   end   .end
#include "ti83plus.inc"
.LIST

     .org 9D93h
     .db $BB,$6D
      ld a,0
      ld (CURCOL),a
      ld (CURROW),a
      ld hl,text
      B_CALL(_PutS)  ; After outputting, it'll try to execute the string:
text:
      .db "Hello, World",0
     ret

.end
end
But it's always good to see new ASM programmers showing their own initiative.
http://clap.timendus.com/ - The Calculator Link Alternative Protocol
http://api.timendus.com/ - Make your life easier, leave the coding to the API
http://vera.timendus.com/ - The calc lover's OS
User avatar
blueskies
Calc Wizard
Posts: 553
Joined: Tue 25 Apr, 2006 2:24 pm

Post by blueskies »

;) fixed. some newbie's headache is now prevented.
On your computer, open up the TI 83 Plus Flash Debugger to make a fake calculator for testing purposes.
This should be posted in the 'Funny website' topic. Lol!
DarkerLine
Calc Wizard
Posts: 526
Joined: Tue 08 Mar, 2005 1:37 am
Location: who wants to know?
Contact:

Post by DarkerLine »

Why do I get the feeling this was almost exactly copied from a source on assembly I've read recently?
just try to be nice to people.
_________________
My TI Blog - http://mpl.unitedti.org/
User avatar
GuillaumeH
Regular Member
Posts: 143
Joined: Fri 17 Dec, 2004 8:30 pm
Contact:

Post by GuillaumeH »

tifreak8x> the address for the unification FAQ has changed a little : http://paxl.org/~gh/ti83/unification.html

It has been updated thanks to an input from CoBB :)
tifreak8x
Sir Posts-A-Lot
Posts: 297
Joined: Mon 11 Jul, 2005 4:42 pm
Location: Indiana
Contact:

Post by tifreak8x »

Thanks! :D

Sorry I have not been on here lately, I forgot to bookmark the forum page, and was using the homepage to get here, but since I have been having some troubles viewing it... :x

Anyways, thanks again, I will update the link. :)
http://tifreakware.net - Connecting TI communities
Post Reply