Author Topic: TI-Cares response to lack of ASM support & limited BASIC programming [MERGED THREADS]  (Read 46000 times)

0 Members and 1 Guest are viewing this topic.

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: TI'S Response to our outrage
« Reply #60 on: July 22, 2010, 01:22:49 am »
But as I've said, its not hard.
*sighs*

I'm going to focus on the main theme of this topic from now on.
Now active at https://discord.gg/cuZcfcF (CodeWalrus server)

Offline Lionel Debroux

  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2135
  • Rating: +290/-45
    • View Profile
    • TI-Chess Team
Re: TI'S Response to our outrage
« Reply #61 on: July 22, 2010, 03:10:03 am »
He's not a TI spy, but there's one person in the community who precluded himself from getting his dirty hands on the Ndless 1 and 2 exploits, because he wrote multiple times, even before the release of Ndless 1, that he'd release it immediately if he got hold of it, no matter how good are the reasons not to release it (disrespect towards those who do actual work, giving a head start to TI for screwing us up in the next OS update, giving a bad reputation to an unstable exploit that could brick the calcs - not to mention disdain for the experience of other homebrew communities fought by the manufacturer and behaving responsibly by maintaining a head start on the manufacturer and withhelding exploits until they become necessary, etc.). That person doesn't even have any Nspire calculator, BTW...
« Last Edit: July 22, 2010, 03:12:22 am by Lionel Debroux »
Member of the TI-Chess Team.
Co-maintainer of GCC4TI (GCC4TI online documentation), TILP and TIEmu.
Co-admin of TI-Planet.

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: TI'S Response to our outrage
« Reply #62 on: July 22, 2010, 03:14:11 am »
Yeah I know who you are talking about x.x
Now active at https://discord.gg/cuZcfcF (CodeWalrus server)

Offline calcdude84se

  • Needs Motivation
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2272
  • Rating: +78/-13
  • Wondering where their free time went...
    • View Profile
Re: TI'S Response to our outrage
« Reply #63 on: July 22, 2010, 08:45:29 am »
I think I do too... x.x
Sad that such people exist... :(
"People think computers will keep them from making mistakes. They're wrong. With computers you make mistakes faster."
-Adam Osborne
Spoiler For "PartesOS links":
I'll put it online when it does something.

Offline critor

  • Editor
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2079
  • Rating: +439/-13
    • View Profile
    • TI-Planet
Re: TI'S Response to our outrage
« Reply #64 on: July 22, 2010, 09:03:32 am »
You mean the well known K² ? :p
TI-Planet co-admin.

Offline calcdude84se

  • Needs Motivation
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2272
  • Rating: +78/-13
  • Wondering where their free time went...
    • View Profile
Re: TI'S Response to our outrage
« Reply #65 on: July 22, 2010, 09:07:33 am »
Yes, and you know it :P
I don't think he owns a z80 calculator either, IIRC, yet we all know him...
Edit: And by "well-known," I think you meant "infamous" :P
« Last Edit: July 22, 2010, 09:08:28 am by calcdude84se »
"People think computers will keep them from making mistakes. They're wrong. With computers you make mistakes faster."
-Adam Osborne
Spoiler For "PartesOS links":
I'll put it online when it does something.

Offline fb39ca4

  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1749
  • Rating: +60/-3
    • View Profile
Re: TI'S Response to our outrage
« Reply #66 on: July 22, 2010, 10:15:25 am »
I actually plan to learn some C in order to program for teh nspire. Can I have a good complier that DOESNT require Cmd preferrably

What I do is create a batch file that contains:

Code: [Select]
make
pause

and run it from windows explorer.
« Last Edit: July 22, 2010, 10:16:04 am by fb39ca4 »

Offline TC01

  • LV6 Super Member (Next: 500)
  • ******
  • Posts: 344
  • Rating: +9/-0
    • View Profile
Re: TI'S Response to our outrage
« Reply #67 on: July 22, 2010, 10:55:06 am »
Or you could do it so the batch file autonavigates to the project directory based on the user's input... I don't have an Nspire, but based on the way apcalc explains it in the tutorial, all you'd need is this (based off a batch file I wrote for SPASM recently):

Code: [Select]
@echo off
title Nspire C Compiler
set /p project=Project folder: 
cd %project%
echo Making project...
make
pause

The advantage is that you would only need one batch file, not one for each project. So, you could create a shortcut to this batch file on your desktop. (The disadvantage is users not easily being able to recompile your source without a batch file in the project folder like fb39ca4's).



The userbars in my sig are links embedded links.

And in addition to calculator (and Python!) stuff, I mod Civilization 4 (frequently with Python).

Offline qazz42

  • LV9 Veteran (Next: 1337)
  • *********
  • Posts: 1130
  • Rating: +30/-12
  • hiiiiiiiii
    • View Profile
Re: TI'S Response to our outrage
« Reply #68 on: July 22, 2010, 11:13:31 am »
So that would be all I would have to do? Just make a batch file?


Sorry, these kinda things confuse me

you would not beleive how long it took me to figure out how to compille in C#, all that work, just to find out I needed csc.exe and a few csc.dlls


* qazz42 feels retarded
« Last Edit: July 22, 2010, 11:17:13 am by qazz42 »

Offline TC01

  • LV6 Super Member (Next: 500)
  • ******
  • Posts: 344
  • Rating: +9/-0
    • View Profile
Re: TI'S Response to our outrage
« Reply #69 on: July 22, 2010, 11:39:03 am »
Yes, to make a batch file you just need to make a text file, and rename it *.bat.

If you're going to be using fb39ca4's batch file, I suggest you create it in your project folder and give it the same name as your project. So if you're compiling the demo, call the batch file demo.bat and put it in the same folder. Then copy-paste the code he posted into it and run it.

If you're going to be using my batch file, create it anywhere (probably in the compiler's folder), copy-paste the code I posted into it, and make a shortcut on your desktop. So again, if you were compiling the demo, when you run the batch file type out (or copy-paste) the path to the demo folder and press enter.



The userbars in my sig are links embedded links.

And in addition to calculator (and Python!) stuff, I mod Civilization 4 (frequently with Python).

Offline qazz42

  • LV9 Veteran (Next: 1337)
  • *********
  • Posts: 1130
  • Rating: +30/-12
  • hiiiiiiiii
    • View Profile
Re: TI'S Response to our outrage
« Reply #70 on: July 22, 2010, 11:51:45 am »
Ah,ok thanks, I didnt realize that making a complier was that easy


Sorry if oyu have to walk me through this, but why is "make" not a reconized command?
« Last Edit: July 22, 2010, 11:55:28 am by qazz42 »

Offline jnesselr

  • King Graphmastur
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2270
  • Rating: +81/-20
  • TAO == epic
    • View Profile
Re: TI'S Response to our outrage
« Reply #71 on: July 22, 2010, 12:05:00 pm »
because you don't have a compiler installed.  Making a compiler is not that easy, and I would suggest using an IDE.

Offline qazz42

  • LV9 Veteran (Next: 1337)
  • *********
  • Posts: 1130
  • Rating: +30/-12
  • hiiiiiiiii
    • View Profile
Re: TI'S Response to our outrage
« Reply #72 on: July 22, 2010, 12:06:19 pm »
ok, and that is the origional question, can someone recommend a good compiler for C, now I dont care if it uses cmd or not

Offline TC01

  • LV6 Super Member (Next: 500)
  • ******
  • Posts: 344
  • Rating: +9/-0
    • View Profile
Re: TI'S Response to our outrage
« Reply #73 on: July 22, 2010, 12:06:45 pm »
Oh, I assumed you had the compiler installed already... yes, you need to follow apcalc's instructions here, but instead of compiling using the command line, use one of the batch files.



The userbars in my sig are links embedded links.

And in addition to calculator (and Python!) stuff, I mod Civilization 4 (frequently with Python).

Offline qazz42

  • LV9 Veteran (Next: 1337)
  • *********
  • Posts: 1130
  • Rating: +30/-12
  • hiiiiiiiii
    • View Profile
Re: TI'S Response to our outrage
« Reply #74 on: July 22, 2010, 12:08:14 pm »
Whew, thank you, now we can go back to the original purpose of this topic.