* Memory control
****************************************************************/
-// Set the video memory location of the start of character fonts
-void
-stdvga_set_text_block_specifier(u8 spec)
-{
- stdvga_sequ_write(0x03, spec);
-}
-
// Enable reads and writes to the given "plane" when in planar4 mode.
void
stdvga_planar4_plane(int plane)
* Font loading
****************************************************************/
+// Set the video memory location of the start of character fonts
+void
+stdvga_set_font_location(u8 spec)
+{
+ stdvga_sequ_write(0x03, spec);
+}
+
static void
get_font_access(void)
{
void stdvga_set_palette_page(u8 pal_page);
void stdvga_get_palette_page(u8 *pal_pagesize, u8 *pal_page);
void stdvga_perform_gray_scale_summing(u16 start, u16 count);
-void stdvga_set_text_block_specifier(u8 spec);
void stdvga_planar4_plane(int plane);
+void stdvga_set_font_location(u8 spec);
void stdvga_load_font(u16 seg, void *src_far, u16 count
, u16 start, u8 destflags, u8 fontsize);
u16 stdvga_get_crtc(void);
static void
handle_101103(struct bregs *regs)
{
- stdvga_set_text_block_specifier(regs->bl);
+ stdvga_set_font_location(regs->bl);
}
static void