diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2012-01-27 20:37:45 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2012-02-01 20:39:03 -0500 |
commit | d61fc53a6037125183bec6ca4f3976d2396486be (patch) | |
tree | 5907196c7464d9c003e66e0e692a597adcaa203a /vgasrc/bochsvga.h | |
parent | 3876b531222c53124b0eb154fb331c0c662f5e09 (diff) | |
download | seabios-d61fc53a6037125183bec6ca4f3976d2396486be.tar.gz |
vgabios: Add support for VBE get/set display start function.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'vgasrc/bochsvga.h')
-rw-r--r-- | vgasrc/bochsvga.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vgasrc/bochsvga.h b/vgasrc/bochsvga.h index b6abf0a1..d36c92a3 100644 --- a/vgasrc/bochsvga.h +++ b/vgasrc/bochsvga.h @@ -59,6 +59,8 @@ int bochsvga_get_window(struct vgamode_s *vmode_g, int window); int bochsvga_set_window(struct vgamode_s *vmode_g, int window, int val); int bochsvga_get_linelength(struct vgamode_s *vmode_g); int bochsvga_set_linelength(struct vgamode_s *vmode_g, int val); +int bochsvga_get_displaystart(struct vgamode_s *vmode_g); +int bochsvga_set_displaystart(struct vgamode_s *vmode_g, int val); int bochsvga_set_mode(struct vgamode_s *vmode_g, int flags); #endif // bochsvga.h |