Search:

Type: Posts; User: thestrapman

Search: Search took 0.02 seconds.

  1. Replies
    10
    Views
    1,551

    Well why don't you make an assembly sub forum. No...

    Well why don't you make an assembly sub forum. No one reads this Tech board apparently.
  2. Replies
    10
    Views
    1,551

    Need Help with Assembly

    This program is supposed to count the number of letters in a string



    ORG RAMStart

    String DC.B "This is a test string",0
    Size DS.B 1
  3. so basically using the + is auto incrementation? ...

    so basically using the + is auto incrementation? and using inx, iny is not? I've run them both with the HCS12, they both work.
  4. Need some help from someone who knows assembly

    Can't find an assembly board....someone here must be familiar with it

    Real easy question. Have a project were I need to use auto incrementation and non auto incrementation.

    Is auto...
  5. Replies
    6
    Views
    6,108

    nvm, i just figured it out and it works. It was...

    nvm, i just figured it out and it works. It was warning me about not casting however...can any specify on what exactly this means.



    include <stdio.h>
    #include <string.h>
    void sort(char...
  6. Replies
    6
    Views
    6,108

    how would I do that?

    how would I do that?
  7. Replies
    6
    Views
    6,108

    Ok, I redid it #include void...

    Ok, I redid it



    #include <stdio.h>
    void sort(char *array[], int size);

    int main()
    {
    int i;
  8. Replies
    6
    Views
    6,108

    Alphabetizing Names

    I'm being asked to do things I haven't done in 2 years, so naturally, I'm rusty. Basically I need to alphabetize 5 names, Susan, Ralph, Marie, Bob, and George. What I want to do is store is name in a...
  9. Replies
    5
    Views
    1,078

    Where can I downlaod a C compiler

    any links to some freeware?
  10. Replies
    3
    Views
    1,379

    stoping inputs into an array

    how would i read inputs into an array until the number 0 is imputed, which at that point continues to a sorting function. I have a sorting function written, i just don't know how to terminate the...
Results 1 to 10 of 10