1*15474Sralph #ifndef lint 2*15474Sralph static char sccsid[] = "@(#)move.c 4.1 (Berkeley) 11/10/83"; 3*15474Sralph #endif 4*15474Sralph 5*15474Sralph #include "hp7221.h" 6*15474Sralph 7*15474Sralph move(xi,yi) 8*15474Sralph int xi,yi; 9*15474Sralph { 10*15474Sralph currentx = scaleX(xi); 11*15474Sralph currenty = scaleY(yi); 12*15474Sralph putchar( 'p' ); 13*15474Sralph putMBP( currentx, currenty ); 14*15474Sralph } 15