home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat83.c */
- /*------------------------------------------------------------------*/
- #include <stdio.h>
- #include <conio.h>
- #include <dos.h>
-
- #define VIDEO 0x10
-
- void movetoxy(int x2, int y2)
- {
- union REGS regs;
-
- regs.h.ah = 2; /* │]⌐w┤σ╝╨ñºª∞╕m */
- regs.h.dh = y2;
- regs.h.dl = x2;
- regs.h.bh = 0; /* ▓─ 0 ¡╢ */
- int86(VIDEO, ®s, ®s);
- }
-
-
- void main()
- {
- int x1, y1, i;
-
- /* Ѳ▓M░ú╝ⁿ╣⌡╡e¡▒ */
- union REGS regs;
-
- regs.x.cx = 0;
- regs.x.dx = 0x1850;
- regs.h.bh = 7;
- regs.x.ax = 0x0600;
- int86(VIDEO,®s,®s);
-
- for(i=2;i<=62;i+=12)
- for(y1=0,x1=i;y1<24;y1++)
- {
- movetoxy(x1, y1);
- printf("╢┘! ▒zªn╢▄ !\n");
- }
- }