Slashdot Mirror


User: Ghiribizzo

Ghiribizzo's activity in the archive.

Stories
0
Comments
3
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 3

  1. sorry... must learn to use preview button ;) on Reverse Engineering? · · Score: 1

    On RISC machines which have delay slots due to pipelining, the NOP is needed. e.g.

    JSR r1 <-- branch instruction with delay slot
    NOP <-- delay slot, this is executed before the branch is taken so if we don't want to execute anything here, we place a nop

  2. Re:Reverse Engineering on Reverse Engineering? · · Score: 1

    On RISC machines which have delay slots due to pipelining, the NOP is needed. e.g.

    JSR r1 NOP

  3. Re:Ability or practice? on Reverse Engineering? · · Score: 1

    I've rarely seen crackers and hackers working together. Although it is true that you can crack without being able to program, it almost the equivalent to being a 'script kiddy'. Many crackers are programmers by profession and all the good ones understand how to program and understand assembly. Take a look at http://win32asm.ownz.com, it's probably the best site for win32asm programming.