I started programming in 32-bit protected mode. Im using it for high graph resolutions like 1280x1024 256 colors:
mov ax,0x4F02
mov bx,0x107
int 0x10
but I have a problem with size of video memory (VRAM) because after switching to this resolution I need 1,280 * 1,024 = 1,310,720 bytes of VRAM but standard BIOS VRAM is only 131,072 bytes wide (address range: 0xa0000-0xbffff). Is there any possible way how to extend BIOS VRAM or to set mine custom base address of VRAM ? (I want to bypass programming my own driver.)