Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Are there anyone who have ever tried to write a video driver for the VMware "hardware" ? I'd like to ask some question about that... I'm using VMware 5.0 ( video chip has 0x0405 device ID ) and i've problems with the framebuffer. The card tells me where the framebuffer is ( actually 0xF0000000 ) and how long it is. I'm doing the following: alloc as much real memory as the card tells and remap the 0xF0000000 area to the real memory space. I think it's good, but in real life it isn't working. I can do everything, but the screen doesn't change. Pls help if you can!
Just a thought - have you tried writing without allocating memory or remapping the framebuffer? Writing to the fb memory area should directly access the card RAM instead of the system RAM.
any chance of you sharing the code? I've been toying with video mode switching on and off, and finally finished my v8086 monitor such that i can switch to a VGA mode pretty reliably.