]> git.unchartedbackwaters.co.uk Git - francis/winuae.git/commitdiff
Remove unused variables.
authorToni Wilen <twilen@winuae.net>
Fri, 27 Feb 2015 16:17:54 +0000 (18:17 +0200)
committerToni Wilen <twilen@winuae.net>
Fri, 27 Feb 2015 16:17:54 +0000 (18:17 +0200)
gencpu.cpp

index 57e8e493a12d6c2a1bfec2b48e81956e8cacb5b4..5a1feb8aa958ff536e6d07d187d6acc3902745ba 100644 (file)
@@ -2022,20 +2022,18 @@ static bool mmu040_special_movem (uae_u16 opcode)
 static void movem_mmu040 (const char *code, int size, bool put, bool aipi, bool apdi, uae_u16 opcode)
 {
        const char *index;
-       int dphase, aphase;
-       bool mvm = false;
+       int dphase;
 
        if (apdi) {
-               dphase = 1; aphase = 0;
+               dphase = 1;
                index = "movem_index2";
        } else {
-               dphase = 0; aphase = 1;
+               dphase = 0;
                index = "movem_index1";
        }
 
        printf ("\tmmu040_movem = 1;\n");
        printf ("\tmmu040_movem_ea = srca;\n");
-       mvm = true;
 
        for (int i = 0; i < 2; i++) {
                char reg;