/* CURSORSZ.C - Set Cursor Size Last Modified: 06/11/86 Copyright (C) 1986, T.A. Daneliuk */ #include <t&r.h> #include <dos.h> void cursorsz(top,bottom) int top,bottom; { extern unsigned _rcx,_rax; _rcx=(top<<8)|(bottom); _rax=0x0100; _doint(16); /* Call BIOS and set cursor size */ }