Skip to content

Instantly share code, notes, and snippets.

@0xc010d
Created March 5, 2013 23:59
Show Gist options
  • Save 0xc010d/5095551 to your computer and use it in GitHub Desktop.
Save 0xc010d/5095551 to your computer and use it in GitHub Desktop.
Insert endp
pop = 0x5d
ret = 0xc3
doc = Document.getCurrentDocument()
seg = doc.getCurrentSegment()
addr = doc.getCurrentAddress()
seg.writeByte(addr, pop)
seg.markAsCode(addr)
addr = addr + 1
seg.writeByte(addr, ret)
seg.markAsCode(addr)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment