Subversion Repositories Kolibri OS

Rev

Rev 7160 | Rev 7166 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7160 Rev 7163
Line 474... Line 474...
474
	ECX = w<<16+h;
474
	ECX = w<<16+h;
475
	EDX = x<<16+y;
475
	EDX = x<<16+y;
476
	$int 0x40
476
	$int 0x40
477
}
477
}
Line 478... Line 478...
478
 
478
 
479
void PutPaletteImage(dword EBX,w,h,x,y,ESI,EDI)
479
:void PutPaletteImage(dword inbuf,w,h,x,y,bits,pal)
480
{
480
{
-
 
481
	EAX = 65;
481
	EAX = 65;
482
	EBX = inbuf;
482
	ECX = w<<16+h;
483
	ECX = w<<16+h;
-
 
484
	EDX = x<<16+y;
-
 
485
	ESI = bits;
483
	EDX = x<<16+y;
486
	EDI = pal;
484
	EBP = 0;
487
	EBP = 0;
485
	$int 0x40
488
	$int 0x40
Line 486... Line 489...
486
}
489
}