accessing member vars in assembly

Started by
19 comments, last by Mulligan 21 years, 7 months ago
Would this work?
    mov eax, DWORD PTR nPixelCountY    cmp eax, 0    je  done    mov ecx, DWORD PTR nPixelCountX    mov ebx, DOWRD PTR pAddress    mov eax, DWORD PTR dwColorARGB32loop:    mov DWORD PTR [ebx], eax    add ebx, 4    dec ecx    jnz loopdone: 


I''m just trying to pick up assembly too

This topic is closed to new replies.

Advertisement