1
0
Fork 0

Added a nice blinking cursor again

Added support for cga register to toggle textmode blinking


Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1625
This commit is contained in:
Sjoerd van der Berg 2004-01-30 09:18:18 +00:00
parent 7146fd91ad
commit d1f0154107
4 changed files with 54 additions and 66 deletions

View file

@ -124,6 +124,7 @@ typedef struct {
Bit8u font[64*1024];
Bitu font1_start;
Bitu font2_start;
Bitu blinking;
struct {
Bit8u sline,eline;
Bit8u count,delay;
@ -161,6 +162,7 @@ typedef struct {
} VGA_HERC;
typedef struct {
Bit8u mode_control;
Bit8u color_select;
} VGA_CGA;
@ -311,6 +313,7 @@ void VGA_SetClock(Bitu which,Bitu target);
void VGA_DACSetEntirePalette(void);
void VGA_StartRetrace(void);
void VGA_StartUpdateLFB(void);
void VGA_SetBlinking(Bitu enabled);
extern VGA_Type vga;