;Copyright 2000 - Mark McDonald All rights reserved ; mouseoff routine for PowerBASIC MCODE Segment Byte Assume CS: MCODE Public mouseoff mouseoff Proc Far push BP ; mov BP, SP ; push DS ; push AX ; mov AX,02h ; hide cursor call int 33h ; call mouse driver pop AX ; pop DS pop BP retf mouseoff EndP MCODE EndS End