How can I enter graphics mode (mode 13h) without using BIOS interrupts? I\'m targeting 32-bit protected mode where BIOS interrupts aren\'t available. I found a tutorial on web,
here's a link with example code: http://files.osdev.org/mirrors/geezer/osd/graphics/modes.c this code wouldn't work inside an operating system like windows or linux though, because it uses the commands inportb and outportb which issue the assembler commands inb and outb, which are disabled in user space.
by the way - user3340787 didn't ask for how to go to a graphics mode in DOS, he asked how to do it without BIOS, which he might want to do when he writes an operating system