This is an archived, read-only copy of the United-TI subforum , including posts and topic from May 2003 to April 2012. If you would like to discuss any of the topics in this forum, you can visit Cemetech's Calculator Programming subforum. Some of these topics may also be directly-linked to active Cemetech topics. If you are a Cemetech member with a linked United-TI account, you can link United-TI topics here with your current Cemetech topics.

This forum is locked: you cannot post, reply to, or edit topics. General Coding and Design => Calculator Programming
Author Message
agility
Calc Spammer


Calc Guru


Joined: 16 May 2004
Posts: 1266

Posted: 07 Jul 2004 08:29:05 am    Post subject:

Yes, actually two weeks ago I purchased a book on PIC Development which explained how to interface the parallel and serial ports, and yesterday I found another book on the subject online. Going to see if I can get that too...
Back to top
optimize


Advanced Newbie


Joined: 03 Aug 2004
Posts: 99

Posted: 24 Aug 2004 08:17:13 am    Post subject:

Use assembly, I'm trying to get x86 as much as I can. It's so simple to interface with any port of the computer using out or in! There's a command your complier will use probably something like:


Code:
//Your code goes here

ext_lang(asm);
{

    in a,($04)
    out a,($04)

}

//Your code continues here


That's probably more C++ code than anything because I don't know C and don't intend to learn it for abit. But I'm positive that you can combine C and ASM.
Back to top
DarkerLine
ceci n'est pas une |


Super Elite (Last Title)


Joined: 04 Nov 2003
Posts: 8328

Posted: 24 Aug 2004 03:14:14 pm    Post subject:

what's the difference between C and C++ if you don't use classes and new stuff? That could be either. You could combine it, but with issues.
Back to top
agility
Calc Spammer


Calc Guru


Joined: 16 May 2004
Posts: 1266

Posted: 24 Aug 2004 05:21:51 pm    Post subject:

C++ is C plus object-oriented programming.
Back to top
DarkerLine
ceci n'est pas une |


Super Elite (Last Title)


Joined: 04 Nov 2003
Posts: 8328

Posted: 24 Aug 2004 05:30:18 pm    Post subject:

Did you just tell me a life-changing fact or did you just say what a five-year old knows?
Back to top
sgm


Calc Guru


Joined: 04 Sep 2003
Posts: 1265

Posted: 24 Aug 2004 09:45:35 pm    Post subject:

agility wrote:
C++ is C plus object-oriented programming.

You forgot templates and polymorphism and RTTI and and and ....
Back to top
agility
Calc Spammer


Calc Guru


Joined: 16 May 2004
Posts: 1266

Posted: 25 Aug 2004 03:07:06 pm    Post subject:

Quote:
Did you just tell me a life-changing fact or did you just say what a five-year old knows?


I hope you're not being sarcastic because I just answered your question.....

@Optimize

If your code is true, then what ports can you use using those instructions?


Last edited by Guest on 25 Aug 2004 03:08:10 pm; edited 1 time in total
Back to top
DarkerLine
ceci n'est pas une |


Super Elite (Last Title)


Joined: 04 Nov 2003
Posts: 8328

Posted: 25 Aug 2004 04:52:13 pm    Post subject:

I am being sarcastic, you deserve it. You do know the definition of "rhetorical question" don't you?
Back to top
leofox
INF student


Super Elite (Last Title)


Joined: 11 Apr 2004
Posts: 3562

Posted: 26 Aug 2004 04:53:46 am    Post subject:

Sir Robin wrote:
Did you just tell me a life-changing fact or did you just say what a five-year old knows?

I didn't know the difference between c and C++ before agility posted, and i am 15 years old...

Most 5 year olds (and 15 year olds too) don't even know what C or C++ is.
Back to top
Arcane Wizard
`semi-hippie`


Super Elite (Last Title)


Joined: 02 Jun 2003
Posts: 8993

Posted: 26 Aug 2004 10:06:24 am    Post subject:

int c = 1337;
c++;
int cplusplus = c;

: )


Last edited by Guest on 26 Aug 2004 10:07:12 am; edited 1 time in total
Back to top
leofox
INF student


Super Elite (Last Title)


Joined: 11 Apr 2004
Posts: 3562

Posted: 27 Aug 2004 02:39:33 am    Post subject:

what the hell are you talking about?
Back to top
X1011
10100111001


Active Member


Joined: 14 Nov 2003
Posts: 657

Posted: 27 Aug 2004 09:08:27 am    Post subject:

I think he said cplusplus = 1338
Back to top
agility
Calc Spammer


Calc Guru


Joined: 16 May 2004
Posts: 1266

Posted: 27 Aug 2004 03:27:36 pm    Post subject:

Okay, does anyone here know how to write a device driver?
Back to top
Arcane Wizard
`semi-hippie`


Super Elite (Last Title)


Joined: 02 Jun 2003
Posts: 8993

Posted: 27 Aug 2004 04:32:40 pm    Post subject:

http://www.google.com/search?q=writing+dev...=utf-8&oe=utf-8
Back to top
agility
Calc Spammer


Calc Guru


Joined: 16 May 2004
Posts: 1266

Posted: 27 Aug 2004 05:09:42 pm    Post subject:

Hmm, and as for USB?
Back to top
DarkerLine
ceci n'est pas une |


Super Elite (Last Title)


Joined: 04 Nov 2003
Posts: 8328

Posted: 27 Aug 2004 05:19:32 pm    Post subject:

same response, except I'm too lazy to actually google for it.
Back to top
Arcane Wizard
`semi-hippie`


Super Elite (Last Title)


Joined: 02 Jun 2003
Posts: 8993

Posted: 27 Aug 2004 05:52:22 pm    Post subject:

Sir Robin wrote:
same response, except I'm too lazy to actually google for it.

Firefox's integrated Google bar > typing up a reply.


Last edited by Guest on 27 Aug 2004 05:52:48 pm; edited 1 time in total
Back to top
DarkerLine
ceci n'est pas une |


Super Elite (Last Title)


Joined: 04 Nov 2003
Posts: 8328

Posted: 27 Aug 2004 05:56:09 pm    Post subject:

In Opera, you can just type g keyword for the URL, but you still have to key in the search items.
Back to top
agility
Calc Spammer


Calc Guru


Joined: 16 May 2004
Posts: 1266

Posted: 27 Aug 2004 07:44:12 pm    Post subject:

Quote:


If only I had found this months ago.....
Back to top
Arcane Wizard
`semi-hippie`


Super Elite (Last Title)


Joined: 02 Jun 2003
Posts: 8993

Posted: 28 Aug 2004 04:17:47 am    Post subject:

Sir Robin wrote:
In Opera, you can just type g keyword for the URL, but you still have to key in the search items.

The keywords where less characters than your reply. : )

Quote:
Quote:
If only I had found this months ago.....
Why didn't you google and look in the most obvious place of them all?

Last edited by Guest on 28 Aug 2004 04:18:11 am; edited 1 time in total
Back to top
Display posts from previous:   
Register to Join the Conversation
Have your own thoughts to add to this or any other topic? Want to ask a question, offer a suggestion, share your own programs and projects, upload a file to the file archives, get help with calculator and computer programming, or simply chat with like-minded coders and tech and calculator enthusiasts via the site-wide AJAX SAX widget? Registration for a free Cemetech account only takes a minute.

» Go to Registration page
    » Goto page Previous  1, 2, 3  Next
» View previous topic :: View next topic  
Page 2 of 3 » All times are UTC - 5 Hours

 

Advertisement