148518Sbostic /*- 2*61395Sbostic * Copyright (c) 1980, 1993 3*61395Sbostic * The Regents of the University of California. All rights reserved. 448518Sbostic * 548518Sbostic * %sccs.include.proprietary.c% 619978Sdist */ 719978Sdist 815474Sralph #ifndef lint 9*61395Sbostic static char sccsid[] = "@(#)move.c 8.1 (Berkeley) 06/04/93"; 1048518Sbostic #endif /* not lint */ 1115474Sralph 1215474Sralph #include "hp7221.h" 1315474Sralph move(xi,yi)1415474Sralphmove(xi,yi) 1515474Sralph int xi,yi; 1615474Sralph { 1715474Sralph currentx = scaleX(xi); 1815474Sralph currenty = scaleY(yi); 1915474Sralph putchar( 'p' ); 2015474Sralph putMBP( currentx, currenty ); 2115474Sralph } 22