Login Register
MoHH2 Legendz

Legends of Medal of honor:Heores 2.. Never forgotten RiP in piece


    You are not connected. Please login or register

    View previous topic View next topic Go down  Message [Page 1 of 1]

    Post: #1Tue Aug 23, 2011 9:31 pm

    avatar

    Brian-1337-

    Senior Member


    NitePR Format:
    Code:
    #Calculator (Enable)
    ;Brian-1337-
    0x00000098 0x0a200300
    0x00000c00 0x3c080880
    0x00000c04 0x8d090c64
    0x00000c08 0x8d0a0c68
    0x00000c0c 0x8d0b0c5c
    0x00000c10 0x240c0003
    0x00000c14 0x240d0000
    0x00000c18 0x156c0003
    0x00000c1c 0x240c0002
    0x00000c20 0x012a001a
    0x00000c24 0x00006812
    0x00000c28 0x156c0003
    0x00000c2c 0x240c0001
    0x00000c30 0x012a0018
    0x00000c34 0x00006812
    0x00000c38 0x156c0002
    0x00000c3c 0x00000000
    0x00000c40 0x012a6822
    0x00000c44 0x15600002
    0x00000c48 0x00000000
    0x00000c4c 0x012a6820
    0x00000c50 0xad0d0c6c
    0x00000c54 0x03e00008
    0x00000c58 0x00000000

    #Addition
    0x00000c5c 0x00000000

    #Subtraction
    0x00000c5c 0x00000001

    #Multiplication
    0x00000c5c 0x00000002

    #Division
    0x00000c5c 0x00000003

    #Factor 1
    0x00000c64 0x00000000

    #Factor 2
    0x00000c68 0x00000000

    #Result
    0x00000c6c 0x00000000
    TempAR Format:
    Code:
    _C0 Calculator (Enable)
    #Brian-1337-
    _M 0x08800098 0x0A200300
    _M 0x08800C00 0x3C080880
    _M 0x08800C04 0x8D090C64
    _M 0x08800C08 0x8D0A0C68
    _M 0x08800C0C 0x8D0B0C5C
    _M 0x08800C10 0x240C0003
    _M 0x08800C14 0x240D0000
    _M 0x08800C18 0x156C0003
    _M 0x08800C1C 0x240C0002
    _M 0x08800C20 0x012A001A
    _M 0x08800C24 0x00006812
    _M 0x08800C28 0x156C0003
    _M 0x08800C2C 0x240C0001
    _M 0x08800C30 0x012A0018
    _M 0x08800C34 0x00006812
    _M 0x08800C38 0x156C0002
    _M 0x08800C3C 0x00000000
    _M 0x08800C40 0x012A6822
    _M 0x08800C44 0x15600002
    _M 0x08800C48 0x00000000
    _M 0x08800C4C 0x012A6820
    _M 0x08800C50 0xAD0D0C6C
    _M 0x08800C54 0x03E00008
    _M 0x08800C58 0x00000000

    _C0 Addition
    _M 0x08800C5C 0x00000000

    _C0 Subtraction
    _M 0x08800C5C 0x00000001

    _C0 Multiplication
    _M 0x08800C5C 0x00000002

    _C0 Division
    _M 0x08800C5C 0x00000003

    _C0 Factor 1
    _M 0x08800C64 0x00000000

    _C0 Factor 2
    _M 0x08800C68 0x00000000

    _C0 Result
    _M 0x08800C6C 0x00000000

    MIPS:

    lui t0, $0880 // t0 = 0x08800000

    lw t1, $0c64(t0) // load value at address 0x08800c64

    lw t2, $0c68(t0) // load value at address 0x08800c68

    lw t3, $0c5c(t0) // load value at address 0x08800c5c

    addiu t4, zero, $0003 /// t4 = 0x00000003

    addiu t5, zero, $0000 /// t5 = 0x00000000, reserved for branch commands

    bne t3, t4, $08800c28 /// will not branch if value at address 0x08800c5c is 0x00000003

    addiu t4, zero, $0002 /// t4 = 0x00000002

    div t1, t2 /// t1 divided by t2 = lo / hi if not perfect

    mflo t5 /// move lo to t5

    bne t3, t4, $08800c38 /// will not branch if value at address 0x08800c5c is 0x00000002

    addiu t4, zero, $0001 /// t4 = 0x00000001

    mult t1, t2 /// t1 multiply by t2 = lo / hi

    mflo t5 /// move lo to t5

    bne t3, t4, $08800c44 /// will not branch if value at address 0x08800c5c is 0x00000001

    nop

    sub t5, t1, t2 /// t1 subtract by t2 = t5

    bne t3, zero, $08800c50 /// will not branch if value at address 0x08800c5c is zero or 0x00000000

    nop

    add t5, t1, t2 /// t1 add by t2 = t5

    sw t5, $0c6c(t0) /// store values in t5 to address 0x08800c6c

    jr ra /// end

    nop


    https://www.facebook.com/Mips.Brian1337

    Post: #2Tue Aug 23, 2011 10:01 pm

    Vet

    Vet

    Elite Member


    wtf is this mips crap? =O


    Post: #3Tue Aug 23, 2011 11:02 pm

    avatar

    Brian-1337-

    Senior Member


    that is the example of how i make the calculator code.
    it will help you if you will make your own code like that and how I made the code.


    https://www.facebook.com/Mips.Brian1337

    Post: #4Wed Aug 24, 2011 4:36 pm

    Vet

    Vet

    Elite Member


    wtf i have to leanr that?!!?!? SHIT~!!!!!!!!!!!!!!!!!!!!!~!!!!!!!!!!!!!!!!!!~!!!!!!!!!!!!!!!!!!!~!!!!!!!!!!!!!!!!!!!!


    Post: #5Wed Aug 24, 2011 6:22 pm

    Arrogant_

    Arrogant_

    Admins
    Admins


    if u wanna code ..yep lol


    http://www.psvmods.net

    Post: #6Wed Aug 24, 2011 6:24 pm

    Vet

    Vet

    Elite Member


    SHIT!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! do u no all that?


    Post: #7Wed Aug 24, 2011 6:35 pm

    Arrogant_

    Arrogant_

    Admins
    Admins


    kindaa WHAT THE FUCK!


    http://www.psvmods.net

    Post: #8Wed Aug 24, 2011 7:11 pm

    StriickeN

    StriickeN

    Admins
    Admins


    lol fragon thinks its easy LMAO Laughing


    http://www.psvmods.net

    Post: #9Wed Aug 24, 2011 7:53 pm

    Vet

    Vet

    Elite Member


    do u no MIPS jugg?


    Post: #10Wed Aug 24, 2011 9:01 pm

    FoodFx

    FoodFx

    Senior Member


    Yes you do need to learn this. The better you know how codes work the more you learn. It's very easy as I skimmed his code and he uses common sense commands this is what I mean:

    sub -- subtract
    add -- addition
    mult -- multiply
    div -- divide

    simple Razz


    Post: #11Wed Aug 24, 2011 9:31 pm

    Vet

    Vet

    Elite Member


    FoodFx wrote:Yes you do need to learn this. The better you know how codes work the more you learn. It's very easy as I skimmed his code and he uses common sense commands this is what I mean:

    sub -- subtract
    add -- addition
    mult -- multiply
    div -- divide

    simple Razz
    ya that t7 f1 etc are eye raping


    Post: #12Thu Aug 25, 2011 12:22 am

    FoodFx

    FoodFx

    Senior Member


    Fragon wrote:
    FoodFx wrote:Yes you do need to learn this. The better you know how codes work the more you learn. It's very easy as I skimmed his code and he uses common sense commands this is what I mean:

    sub -- subtract
    add -- addition
    mult -- multiply
    div -- divide

    simple Razz
    ya that t7 f1 etc are eye raping

    What do you mean?


    Post: #13Thu Aug 25, 2011 5:55 pm

    Vet

    Vet

    Elite Member


    FoodFx wrote:
    Fragon wrote:
    FoodFx wrote:Yes you do need to learn this. The better you know how codes work the more you learn. It's very easy as I skimmed his code and he uses common sense commands this is what I mean:

    sub -- subtract
    add -- addition
    mult -- multiply
    div -- divide

    simple Razz
    ya that t7 f1 etc are eye raping

    What do you mean?
    just the whole thing is eye raping


    Post: #14Thu Aug 25, 2011 11:25 pm

    FoodFx

    FoodFx

    Senior Member


    Dont understand what you are trying to say :cnfsd:


    Post: #15Thu Aug 25, 2011 11:38 pm

    Vet

    Vet

    Elite Member


    FoodFx wrote:Dont understand what you are trying to say :cnfsd:
    YOU----SAW----WHAT-----BRAIN-----POSTED----HE-----POSTED-----MIPS-----CODE----AND----ME----EYES----GOT------RAPED.


    Post: #16Fri Aug 26, 2011 12:40 am

    Gnemo42

    Gnemo42

    Senior Member


    o.0


    http:// Footlocker.com

    Post: #17

    Sponsored content





    View previous topic View next topic Back to top  Message [Page 1 of 1]

    Permissions in this forum:
    You cannot reply to topics in this forum