Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

translate code into assembly

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
i want to translate this code en assembly
for(int ii=0;ii<(128*640);ii++)
{
b=((buffer[ii]>>16)& 0xff);
g=((buffer[ii]>>8)& 0xff);
r=(buffer[ii]& 0xff);
buffer[ii]=RGB(b,g,r);
}
[Afro]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top