Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Time for me to seduce you, there is no resisting me.

Options
2

Comments

  • Moderators, Education Moderators Posts: 8,561 Mod ✭✭✭✭Rhyme


    MOV CX 69
    ADD BA, BE
    BREAK;
    DOWN;

    /me dances vigorously


  • Moderators, Science, Health & Environment Moderators, Social & Fun Moderators, Society & Culture Moderators Posts: 60,082 Mod ✭✭✭✭Tar.Aldarion


    command: /MODE FUNK


  • Closed Accounts Posts: 9,846 ✭✭✭Le Rack


    no one told me we were dancing!


  • Moderators, Science, Health & Environment Moderators, Social & Fun Moderators, Society & Culture Moderators Posts: 60,082 Mod ✭✭✭✭Tar.Aldarion


    ERROR ERROR

    COMMAND LINE 3: THIS THREAD IS FOR CODE AND BIG LETTERS, **** OFF.


    i++


  • Closed Accounts Posts: 9,846 ✭✭✭Le Rack


    ye wha???


  • Advertisement
  • Moderators, Education Moderators Posts: 8,561 Mod ✭✭✭✭Rhyme


    C:\Program Files\REDUN\Codeclean.exe
    .BAK initialised
    ...
    ..
    .
    Redundant code orphaned
    removing...
    removed, efficency maintained


  • Moderators, Science, Health & Environment Moderators, Social & Fun Moderators, Society & Culture Moderators Posts: 60,082 Mod ✭✭✭✭Tar.Aldarion


    001 001 010 111


  • Closed Accounts Posts: 31,967 ✭✭✭✭Sarky


    10 Print "*thrust*"
    Goto 10


  • Moderators, Category Moderators, Politics Moderators, Recreation & Hobbies Moderators, Society & Culture Moderators Posts: 81,309 CMod ✭✭✭✭coffee_cake


    public main{

    System.out.println("take me now, tarry:D ");
    }

    :p


  • Closed Accounts Posts: 7,230 ✭✭✭scojones


    while(erect) { thrust(); }


  • Advertisement
  • Registered Users Posts: 7,589 ✭✭✭Hail 2 Da Chimp


    You aint gonna impress anyone programming in assembler, try programming a friken ARM in C!!!!! TRY IT!!!! ITS UMPOSSIBLE!!!


  • Registered Users Posts: 7,589 ✭✭✭Hail 2 Da Chimp


    #include <91R40008.h>
    //#include <LCD_Atmel.c>
    //#include<lcd_atmel.h>
    int main (void)
    {
    int input, output;
    PIO_PER = 0xffffffff; // Enables pins
    PIO_OER = 0xffffedf9; // Sets pins as outputs
    PIO_SODR = 0xffffffff;

    while(1)
    {input = PIO_PDSR;
    input = input & 0x00001206; //Enables pushbutton pins as inputs

    switch (input)
    {
    case 0x00000206: // Case 1 = Pushbutton 1 pressed
    output = 0xfffeffff;
    PIO_SODR = output; //Set output LED
    PIO_CODR =~ output; //Clear all compliment pins
    break;
    case 0x00001006:
    output = 0xfffdffff;
    PIO_SODR = output;
    PIO_CODR =~ output;
    break;
    case 0x00001204:
    output = 0xfffbffff;
    PIO_SODR = output;
    PIO_CODR =~ output;
    break;
    case 0x00001202:
    output = 0xfff7ffff;
    PIO_SODR = output;
    PIO_CODR =~ output;
    break;
    default:
    PIO_SODR = 0xffffffff;
    }

    }
    return 0;
    }

    Impressed yet? HUH?

    Ya... i thought so... :cool:


  • Registered Users Posts: 9,706 ✭✭✭Matt Holck


    needs comments

    It's not my job to translate your work


  • Registered Users Posts: 7,589 ✭✭✭Hail 2 Da Chimp


    Comments are for people who dont understand...

    You've got to think like a computer!!!!

    (Also i forgot how it works)


  • Registered Users Posts: 9,706 ✭✭✭Matt Holck


    wow
    declare unexplained variables in hex a dicky
    start continoues loop
    record and input from unspecified port
    use switch to catch desired input to break loop


    ever heard of associative vectors?


  • Registered Users Posts: 7,589 ✭✭✭Hail 2 Da Chimp


    There's a few comments for ya,

    What is this associated vector you speak of?


  • Registered Users Posts: 592 ✭✭✭Deer


    This thread is sooooo sexy - I'm getting soooooooooo hot just reading it. You sexy masterful men. I am seduced.:p


  • Registered Users Posts: 7,589 ✭✭✭Hail 2 Da Chimp


    Or as they say in Laymans terms... "as wet as an otters pocket!"


  • Registered Users Posts: 9,706 ✭✭✭Matt Holck


    vector that assocaite a particular index to particular value

    #include <91R40008.h>
    int main (void)
    {
    int input, output;
    PIO_PER = 0xffffffff; // Enables pins
    PIO_OER = 0xffffedf9; // Sets pins as outputs
    PIO_SODR = 0xffffffff;

    var asociateVector["0x00000206"]=0xfffeffff; // Case 1 = Pushbutton 1 pressed
    asociateVector["0x00001006"]=0xfffdffff;
    asociateVector["0x00001204"]=0xfffbffff;
    asociateVector["0x00001202"]=0xfff7ffff;

    while(1){
    input = PIO_PDSR;
    input = input & 0x00001206; //Enables pushbutton pins as inputs
    if (asociateVector[input]){ // if value for asociateVector exists
    output = asociateVector[input];
    PIO_SODR = output;
    PIO_CODR =~ output;
    break;}
    else PIO_SODR = 0xffffffff;

    }

    }
    return 0;
    }


    don't know if that's the correct notation for the languages
    associative vector's are also called hash.

    This method allows for easier changes to the input/output set


  • Moderators, Science, Health & Environment Moderators, Social & Fun Moderators, Society & Culture Moderators Posts: 60,082 Mod ✭✭✭✭Tar.Aldarion


    You aint gonna impress anyone programming in assembler, try programming a friken ARM in C!!!!! TRY IT!!!! ITS UMPOSSIBLE!!!
    Oh it's pointless to do it in c but I will be learning it.


    ASSEMBLY FTW #011h


  • Advertisement
  • Registered Users Posts: 7,589 ✭✭✭Hail 2 Da Chimp


    If you need any help... um... just ask Matt.
    He looks like he knows what hes doing...


  • Closed Accounts Posts: 31,967 ✭✭✭✭Sarky


    I had a dream last night that Tar was seducing me. There was, indeed, no resisting him. He had lace boxers and didn't shave down there. o_O


  • Registered Users Posts: 6,350 ✭✭✭Lust4Life


    rofl.gif

    Ah, Sarky! That was a premium post!


  • Closed Accounts Posts: 3,648 ✭✭✭jezza


    tubey wrote:
    You post some shite do you know that. Get a life for yourself.
    Eat sh!t asshole.


  • Moderators, Social & Fun Moderators Posts: 28,633 Mod ✭✭✭✭Shiminay


    oldposts.jpg


  • Moderators, Science, Health & Environment Moderators, Social & Fun Moderators, Society & Culture Moderators Posts: 60,082 Mod ✭✭✭✭Tar.Aldarion


    Sarky wrote:
    I had a dream last night that Tar was seducing me. There was, indeed, no resisting him. He had lace boxers and didn't shave down there. o_O
    o_0






    o_0


  • Registered Users Posts: 7,589 ✭✭✭Hail 2 Da Chimp


    I'm guessing thats Tar's sex face?


  • Moderators, Science, Health & Environment Moderators, Social & Fun Moderators, Society & Culture Moderators Posts: 60,082 Mod ✭✭✭✭Tar.Aldarion


    That's more like -_-
    Well, at least with your mother.


    Btw, I had my exam on teh arm and C etc today, hard my ass!?

    (Was really hard)


  • Closed Accounts Posts: 31,967 ✭✭✭✭Sarky


    I'm guessing thats Tar's sex face?


    I couldnt tell. He, um, wasn't facing me...


  • Advertisement
  • Moderators, Science, Health & Environment Moderators, Social & Fun Moderators, Society & Culture Moderators Posts: 60,082 Mod ✭✭✭✭Tar.Aldarion


    Fool, I have no face!


Advertisement