Omnimaga

Calculator Community => TI Calculators => ASM => Topic started by: tifreak on April 16, 2006, 12:41:00 pm

Title: Ultimate ASM/C Resource
Post by: tifreak on April 16, 2006, 12:41:00 pm
http://tifreakware.calcgames.org/asmresc.htm
Title: Ultimate ASM/C Resource
Post by: DJ Omnimaga on April 16, 2006, 12:50:00 pm
there we go ^^

now we only need some BASIC undocumented tricks again :)smile.gif
Title: Ultimate ASM/C Resource
Post by: Alex on April 17, 2006, 02:25:00 am
Nice collection, I'd also like to add http://www.technoplaza.net for great C and ASM tutorials for the 68k calcs.

- Alex
Title: Ultimate ASM/C Resource
Post by: the_unknown_one on April 17, 2006, 02:44:00 am
Thanks, this might come in handy!
Title: Ultimate ASM/C Resource
Post by: tifreak on April 17, 2006, 06:24:00 am
QUOTE
Nice collection, I'd also like to add http://www.technoplaza.net for great C and ASM tutorials for the 68k calcs.

- Alex


That one is listed. ^_^happy.gif


QuoteBegin
-->
QUOTE
there we go ^^

now we only need some BASIC undocumented tricks again :)smile.gif


I have been working a lil bit on that one too...

http://s4.invisionfree.com/TIFreakware/index.php?showforum=60


QuoteBegin
-->
QUOTE
Thanks, this might come in handy!


I saw people having troubles figuring out where to get stuff, so I came up with that page. I got a lot of the links from asm programmers, from Kerm Martian, Micheal V, Ranman (for C) and several others from Detached Solutions, who really like the idea.
Title: Ultimate ASM/C Resource
Post by: saubue on April 18, 2006, 07:30:00 am
I have also written a small TIGCC Tutorial. It's in German and can be found at http://www.mobifiles.de/Forum/viewtopic.php?t=125
Title: Ultimate ASM/C Resource
Post by: Spellshaper on April 18, 2006, 07:47:00 am
*W00T!*

Thx saubue ^^
Exactly what I need :)smile.gif
Title: Ultimate ASM/C Resource
Post by: tifreak on April 18, 2006, 08:06:00 am
I might have to see about linking to that. :)smile.gif Unless you would allow me to host a copy... :Dbiggrin.gif
Title: Ultimate ASM/C Resource
Post by: saubue on April 19, 2006, 01:06:00 am
You can copy it, of course, but it's in German (and I'm planning to translate it because there's as good as no calculator information in German)
Title: Ultimate ASM/C Resource
Post by: Liazon on April 19, 2006, 03:55:00 am
QuoteBegin-Spellshaper+Apr 18 2006, 01:47 PM-->
QUOTE (Spellshaper @ Apr 18 2006, 01:47 PM)
*W00T!*

Thx saubue ^^
Exactly what I need :)smile.gif

 I didn't know you had an 68k calc.

@saubue: glad to see you back and working on ShadowFalls.  For now I'll try an online translator for reading your tutorial.
Title: Ultimate ASM/C Resource
Post by: saubue on April 19, 2006, 04:59:00 am
The Tutorial is mainly for beginners who are new to both C and 68k programming and only covers some basic stuff. It's not finished yet, but I haven't had enough time in the last months. As you can see, the last entry is from May 2005...
Title: Ultimate ASM/C Resource
Post by: tifreak on April 19, 2006, 05:07:00 am
I don't mind copying as is. ^_^happy.gif Allows me to provide for the Germans as well, since I am originally from there. :)smile.gif

I would also love to host a copy of the translated version, when you get that done.

Thank you very much, hopefully I can get it posted soon ^_^happy.gif
Title: Ultimate ASM/C Resource
Post by: saubue on April 19, 2006, 05:44:00 am
QuoteBegin-tifreak8x+Apr 19 2006, 04:07 PM-->
QUOTE (tifreak8x @ Apr 19 2006, 04:07 PM)
I don't mind copying as is. ^_^happy.gif Allows me to provide for the Germans as well, since I am originally from there. :)smile.gif

 Cool! In which city have you been born?
Title: Ultimate ASM/C Resource
Post by: tifreak on April 19, 2006, 06:36:00 am
Umm, I am not sure the spelling, but it was in Creilsheim... something similar to that. I can get the exact spelling from mom when I talk to her...
Title: Ultimate ASM/C Resource
Post by: Spellshaper on April 19, 2006, 08:54:00 am
QuoteBegin-Liazon+Apr 19 2006, 04:55 PM-->
QUOTE (Liazon @ Apr 19 2006, 04:55 PM)
QuoteBegin-Spellshaper+Apr 18 2006, 01:47 PM-->
QUOTE (Spellshaper @ Apr 18 2006, 01:47 PM)
*W00T!*

Thx saubue ^^
Exactly what I need :)smile.gif

I didn't know you had an 68k calc.

Me didn't either ^^

But I plan on getting one soon, and I want to check into some 68k programming as soon as I have the time (bah, school suckz)
Title: Ultimate ASM/C Resource
Post by: saubue on April 19, 2006, 09:07:00 am
QuoteBegin-tifreak8x+Apr 19 2006, 05:36 PM-->
QUOTE (tifreak8x @ Apr 19 2006, 05:36 PM)
Umm, I am not sure the spelling, but it was in Creilsheim... something similar to that. I can get the exact spelling from mom when I talk to her...  

 I guess you spelled it right - it's in the middle of Germany, says map24 :)smile.gif
Title: Ultimate ASM/C Resource
Post by: Halifax on April 08, 2007, 03:56:00 pm
These algorithms are not made for 68K although they may work on it I don't know. But I made these because there is a toupper() and tolower() that converts the character to upper or lowercase respectivly. Some what about strings?? Well I made a routine for it. Here you go. It all depends on if the 68K ASCII table is standard. If it is then this will work on it. If it is not then this will not work on it.


c1-->
CODE
ec1
/* This will convert a string consisting of all, none or mixed cases of letters to uppercase. Note that it will not convert any characters other than alphabet characters */
char touppers( char string[] )
{