~vcs-imports/qemu/git

« back to all changes in this revision

Viewing changes to hw/cirrus_vga_rop.h

  • Committer: ths
  • Date: 2007-10-08 12:45:38 UTC
  • Revision ID: git-v1:450d4ff553af32fc9d83fef20d7106b0151526b8
CRIS disassembler, originally from binutils, by Edgar E. Iglesias.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3356 c046a42c-6fe2-441c-8c8c-71466251a162

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
    int x,y;
32
32
    dstpitch -= bltwidth;
33
33
    srcpitch -= bltwidth;
34
 
 
35
 
    if (dstpitch < 0 || srcpitch < 0) {
36
 
        /* is 0 valid? srcpitch == 0 could be useful */
37
 
        return;
38
 
    }
39
 
 
40
34
    for (y = 0; y < bltheight; y++) {
41
35
        for (x = 0; x < bltwidth; x++) {
42
36
            ROP_OP(*dst, *src);