you are viewing a single comment's thread
view the rest of the comments
[–] 2 points 2 years ago (1 child)

return from subroutine, int3 would be something relating to interrupts off the top of my head.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 3 points 2 years ago

    Int3 is a special single-byte (CC, if I recall correctly) form of the INT instruction (which is CD imm8, I think) to raise an interrupt. Interrupt #3 is the debugging interrupt, so by overwriting any instruction with CC, you place a breakpoint there.

  • source
  • parent