


For a USING 1 interrupt....
 Keil does:
     PUSH PSW
     MOV  PSW, #08H
      ...
     POP  PSW
 As opposed to this which would preserve other flags:
     PUSH PSW
     SETB PSW.3
     CLR  PSW.4
      ...
     POP  PSW