First post, by AndrejaKo
For some university project I'm writing an application which should run in one of VESA 132 x X modes, be written in assembly, not rely on DOS functions and if possible run fine in DosBox.
After searching this forum, I got some mixed signals on support of those modes in DosBox.
Here's the code I'm using to set the video mode:
mov ax, 4F02hmov bx, 107hint 10h
When I try this, I get the expected 1280 x 1024 mode. When I try to use for example 109h for 132 x 25 instead of 107h, nothing happens. Same goes for 10Ah, 10Bh, 10Ch.
Right now my `machine` setting is at svga_s3, but I tried with vga_et3000, svga_et4000, svga_paradise, vesa_nolfb and vesa_oldvbe too and it seems they didn't help.
So my question is: Did anybody manage to get them running and if yes, how?