I'm using Win XP SP2, thanks for your example that u send to me

. I donn't understand there these strings:
std::ifstream stream(filename, std::ios::binary);
if (!stream)
{} // error
stream.read(reinterpret_cast<char *>(&header), sizeof(BITMAPFILEHEADER));
stream.read(reinterpret_cast<char *>(&info), sizeof(BITMAPINFO));
stream.seekg(header.bfOffBits, std::ios::beg);
width = info.bmiHeader.biWidth;
height = info.bmiHeader.biHeight;
bytes_in_row = width/8;
lines = height;
discardbytes=0;
if((bytes_in_row % 4) != 0)
discardbytes = (bytes_in_row - (bytes_in_row % 4)) + 4 - bytes_in_row;
for(line=lines-1;line>=0;line--)
{
for(i = 0; (i < bytes_in_row) && (!stream.eof()); i++)
bitmap[line*bytes_in_row+i] = 255 - stream.get();
for(i=0;i<discardbytes;i++)
stream.get();
}
I've cut your comments. And I have 1 little problem

, I connect
dirrectly to microcontroller except 1 leg

, it is CS pin. I've
connected it to LPT. So the problem is, that I cann't change CS state
during the 8080 protocol. I can just turn it LOW or HIGH. DATA pins
A0, RD and WR are dirrectly goes to microcontroller and CS to LPT.
Will s1d13305(sed1335) work if I set CS to LOW one time, and will
send commands to it without changing CS state??? Or I must change CS
state from LOW to HIGH and from HIGH to LOW every command?