VGA Resources: Difference between revisions

From OSDev.wiki
Jump to navigation Jump to search
[unchecked revision][unchecked revision]
Content added Content deleted
m (Dead link, replaced it with Wayback Machine)
 
(11 intermediate revisions by 8 users not shown)
Line 2:
 
== VGA Resources ==
* [[:Category:VGA|This wiki]]
* [http://www.google.com/search?hl=en&ie=UTF-8&q=VGA+registers+programming&btn GbtnG=Google+Search googleGoogle Search "VGA registers searchprogramming"],
* [http://myfiles.execpcosdev.comorg/mirrors/~geezer/osd/graphics/index.htm OS/graphicsOSD: zoneGraphics] fromFrom [[Chris Giese]], containing many code snippets.
* [http://web.archive.org/web/20140218012818/http://atschool.eduweb.co.uk/camdean/pupils/amac/vga.htm tutorialTutorial on VGA graphics] including basis of font and line rendering, palette setting, unchained mode, etc.
* [https://github.com/FlingOS/FlingOS/tree/develop/Kernel/Libraries/Kernel.VGA FlingOS VGA Driver] has a good (low-performance but easy to read, protected-mode) VGA driver supporting text and graphical modes
 
=== [http://www.osdever.net/FreeVGA/vga/vga.htm Free VGA] ===
Line 18 ⟶ 20:
 
* The VESA home page: http://www.vesa.org
* Emulating VESA calls from protected mode: [[Virtual 8086 Mode]], or use a library like [https://github.com/wfeldt/libx86emu libx86emu]. Xfree86 used [https://cgit.freedesktop.org/xorg/xserver/tree/hw/xfree86/x86emu this code] to access VESA functions on Linux.
 
==== Selected coding tricks ====
 
* [http://myfiles.execpcosdev.comorg/mirrors/~geezer/software/90x60.asm 90x60 text mode] from [[Chris Giese]] <geezer@execpc.com>
* [http://myfiles.execpcosdev.comorg/mirrors/~geezer/osd/graphics/modes.c Changing text/graphic mode fontand fonts] -- this also has code for switching video modes without bios

Latest revision as of 20:15, 19 November 2020


VGA Resources

Free VGA

SVGA resources

Selected coding tricks