This script allows inserting (replacing) the currently highlighted opcode with NOP
(hex, 0x90
).
doc = Document.getCurrentDocument() seg = doc.getCurrentSegment() adr = doc.getCurrentAddress() seg.writeByte(adr, 0x90) seg.markAsCode(adr)
For the contact, copyright, license, warranty and privacy terms for the usage of this website please see the contact, license, privacy, copyright.