I am writing a simple OS and I am now trying to display stuff on the screen rather than just text. and after a little bit of research this is what I got :
- The simplest way to get graphics modes without using BIOS would be to develop VGA driver. This gives you all low resolution modes on practically all hardware
- However, if you want to support high resolutions, you must write a driver for each graphics card that you want your OS to support.
But as far as I know you can actually have windows or any other operating system up and running with any resolution without installing the dedicated graphics card drivers, How is that possible .