The MASM Forum Archive 2004 to 2012

Miscellaneous Forums => 16 bit DOS Programming => Topic started by: abcomp01 on December 26, 2006, 01:09:30 PM

Title: how load bitmap in dosmode
Post by: abcomp01 on December 26, 2006, 01:09:30 PM
i want using normal assembly
Title: Re: how load bitmap in dosmode
Post by: MichaelW on December 26, 2006, 08:36:44 PM
You provide the code, we help you fix it.

By "load" I assume you mean to display the bitmap on a PC. Depending on the type of bitmap and the target display hardware, this could be fairly easy or very difficult.

MSDN: Bitmap Storage (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/gdi/bitmaps_4v1h.asp)

If the target display hardware will be the standard VGA, try searching the web for VGA and DAC. It would probably be best to use the VGA BIOS functions to program the VGA.

The necessary structures, BITMAPFILEHEADER, BITMAPINFOHEADER, and RGBQUAD can be found in the MASM32 windows.inc file.