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
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.
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
On RISC machines which have delay slots due to pipelining, the NOP is needed. e.g.
JSR r1 NOP
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.