/* SG C Tools 1.2 (C) 1993 Steve Goldsmith All Rights Reserved Compiled with HI-TECH C 3.09 (CP/M-80). */ #include #include extern uchar vdcScrHorz; extern ushort vdcDispMem; /* fill disp mem given x and y offset in current page */ void filldspvdc(uchar X, uchar Y, uchar CLen, uchar Ch) { fillmemvdc(Y*vdcScrHorz+vdcDispMem+X,CLen,Ch); }