Welcome, Guest. Please login or register.
March 28, 2024, 11:05:39 am

ballp.it is the community forum for The F Plus.

You're only seeing part of the forum conversation. To see more, register for an account. This will give you read-only access to nearly all the forums.

Topic: CTRL+V and post it  (Read 430467 times)

Ambious

  • Guest
CTRL+V and post it #285
.ORIG x3000
   LD R0, Test_Mul1
   LD R1, Test_Mul2
   JSR Mul
   LD R1, Test_Res
   ;; At this point R2 holds the result and R1 holds the negative of the correct result
   ADD R2, R2, R1
   BRz RES_GOOD ;Result was zeroed out
   RES_BAD
      LEA R0, TEST_ERR_STR
      PUTS
      BR DONE
   RES_GOOD
      LEA R0, TEST_CORRECT_STR
      PUTS
   DONE
   
HALT
   TEST_ERR_STR .STRINGZ "Result is wrong"
   TEST_CORRECT_STR .STRINGZ "Reulst is correct"
   Test_Mul1 .Fill #-212
   Test_Mul2 .Fill #-158
   Test_Res .Fill x-82D8 ;This has to the inverted test result!
   Mul ;MUL function, R2<-R0*R1
      AND R2, R2, #0 ;Init R2
      OrigRet ;Here we will store the original return address for the subroutine
      ST R7, OrigRet ;Store the original return address to OrigReg
      ADD R0, R0, #0 ;Adds 0 to R0 to load it to the CC
      BRz ZeroMul ;Goto ZeroMul is R0 is 0
      BRp Pos ;Goto Pos if R0 is Positive
      BRn Neg ;Goto Neg if R0 is Negative      
      Pos ;If R0 is Positive
         ADD R1, R1, #0; Load R1 to the CC
         BRz ZeroMul ;Goto ZeroMul if R1 is 0
         BRp PosPos ;Goto PosPos is both registers are positive
         BRn PosNeg ;Goto PosNeg if R0 is positive and R1 is negative
      PosPos
         ;Add R0 to R2 and reduce R1 by 1. Repeat until R1 is 0.
         ADD R2, R2, R0
         ADD R1, R1, #-1
         BRnp PosPos
         BR MyRet
      PosNeg
         ;ADD R0 to R2 and increase R1 by 1. Repeat until R1 is 0, then reverse by 2's complement.
         ADD R2, R2, R0
         ADD R1, R1, #1
         BRnp PosNeg
         NOT R2, R2
         ADD R2, R2, #1
         BR MyRet
      Neg
         ADD R1, R1, #0; If R0 is negative, check what R1 is by loading it to the CC
         BRz ZeroMul
         BRn NegNeg
         BRp NegPos
      NegNeg
         ;Simply reverse both values using 2's complement and pass them on to PosPos
         NOT R0, R0
         ADD R0, R0, #1
         NOT R1, R1
         ADD R1, R1, #1
         BR PosPos
      NegPos
         ;Simply reverse both values using 2's complement and pass them on to PosNeg
         Not R0, R0
         ADD R0, R0, #1
         NOT R1, R1
         ADD R1, R1, #1
         BR PosNeg
      ZeroMul
         AND R2, R2, #0 ;Stores 0 in R2
         BR MyRet
      MyRet ;Loads the original return address back to R7
         LD R7, OrigRet
         Ret
.END

Digital Walnut

  • The Carl Icahn of nuzzling
  • Paid
  • Source(s): meee~ nyaa~ :3
    • 407
    • 45
CTRL+V and post it #286

Runic

  • Is Putting A Donk On It
  • Paid
  • John Brown did nothing wrong
  • 2,951
  • 69
CTRL+V and post it #287
    final int FIELD_WIDTH = 10;
   
    userNameLabel = new JLabel("UserName:");
    userNameField = new JTextField(FIELD_WIDTH);
   
    passwordLabel = new JLabel("Password:");
    passwordField = new JTextField(FIELD_WIDTH);
   
    /*retypePasswordLabel = new JLabel("Re-Type Password:");
    retypePasswordField = new JTextField(FIELD_WIDTH);*/
   
    idLabel = new JLabel("Student ID #");
    idField = new JTextField(FIELD_WIDTH);
   
    topPanel.setLayout(new GridLayout(3, 2));
   
    topPanel.add(userNameLabel);
    topPanel.add(userNameField);
    topPanel.add(passwordLabel);
    topPanel.add(passwordField);
    topPanel.add(idLabel);
    topPanel.add(idField);
   
    add(topPanel, BorderLayout.NORTH);

Agent (gobble, gobble) Coop

  • Trill Lesh
  • Paid
  • 12 cellphones and I look like kurt angle
  • 3,922
  • 240
CTRL+V and post it #288
We need to stop the spread of Shakira Law overseas

chai tea latte

  • TheftBot is, simply put, a fully sentient robot for stealing automatic teller machines
  • Paid
  • (ATMs) from nearby convenience stores.
  • 5,773
  • -420
CTRL+V and post it #289
Hoenukkah season 👄

Hey sluts 👯 hoenukkah is right ➡️ around ⤵️ the corner!! 🕎 That means 8️⃣ days of dick sucking 🍆💦💦💦 make sure you get that Jewish dick this month 📅 send this to 2️⃣0️⃣ of the sluttiest 🍑 hoenukkah 🕎 hoes you know or else you will turn ugly in a year😰 If you get 5️⃣ back: ur an ugly dreidel dick😟😟 If you get 1️⃣0️⃣ back ur a holiday hoe 👄🎉 if you get 1️⃣5️⃣ back then DAMN u eatin good 🍆tonight 👅💦💦💦 ur gettin that good Jewish Cock 🍆🍆

Ambious

  • Guest
CTRL+V and post it #290
“Pro-male” groups they spend a lot of their time complaining about, bitching about and in general talking about women.

Agent (gobble, gobble) Coop

  • Trill Lesh
  • Paid
  • 12 cellphones and I look like kurt angle
  • 3,922
  • 240
CTRL+V and post it #291
It's a much better game if you treat it as the ongoing adventures of Ad-Boss, Adamska Yauch, and Mill-D

Digital Walnut

  • The Carl Icahn of nuzzling
  • Paid
  • Source(s): meee~ nyaa~ :3
    • 407
    • 45

Sherman Tank

  • Licensed Kadir-Buxton Method Practitioner
  • Associate Tag Director, East
  • I'm over 30 years old and I like fried chicken.
  • 2,659
  • 17
CTRL+V and post it #293

Spoop

  • vegan lamp-kin
  • Paid
  • we do not take the cork off the fork
  • 119
  • 14
CTRL+V and post it #294
\begin{exe}
\exi{(2.12)}
\gll Þá lét Loki {\bf fallask} í kné Ska\textthorn a \\
then let Loki himself-fall on knees Ska\textthorn i \\
\trans "Then Loki let himself drop onto Ska\textthorn i’s knees... ({\it Skáldskaparmál}, Snorri Sturluson 1998, p. 2)" \\
\end{exe}

Sherman Tank

  • Licensed Kadir-Buxton Method Practitioner
  • Associate Tag Director, East
  • I'm over 30 years old and I like fried chicken.
  • 2,659
  • 17

Spoop

  • vegan lamp-kin
  • Paid
  • we do not take the cork off the fork
  • 119
  • 14

Old_Zircon

  • The phased-out byzantine devil.
  • Paid
  • 924
  • 90
CTRL+V and post it #297
 mike mikeson 11 months ago
This is the stupidest fucking shit genre of "music" ive ever heard.
This is how you ruin music. It wasnt boy bands, it wasnt hip hop, it wasnt trash pop, it wasnt mainstream punk, it was some faggot sticking one microphone against a speaker, and the other up his ass.
I hope the hipsters who pretend to like this grow the hell up (its literally like randy marsh pretending to like tweenwave), and the people who genuinely enjoy this are put in mental institutions before they murder someone, as there is obviously something incredibly fucked with your head.

Old_Zircon

  • The phased-out byzantine devil.
  • Paid
  • 924
  • 90
CTRL+V and post it #298
Mike Mikeson was then shouted down for about 30 posts by other Youtubers for being a Gamergater.

Agent (gobble, gobble) Coop

  • Trill Lesh
  • Paid
  • 12 cellphones and I look like kurt angle
  • 3,922
  • 240
CTRL+V and post it #299
  some faggot sticking one microphone against a speaker, and the other up his ass.
Old_Zircon, November 20, 2015, 10:08:45 pm
Coil?