Hi Laurentiu, > > + if ((TRAP(regs) == 0xf00) && regs->result) > > + return true; > > + > > + return false; > > Why not just > > return (TRAP(regs) == 0xf00) && regs->result; Could do, it just read a little easier to my tired eyes. Anton