]> git.unchartedbackwaters.co.uk Git - francis/winuae.git/commitdiff
Added missing ENDTRY macros (only needed for C compatibility)
authorToni Wilen <twilen@winuae.net>
Mon, 22 Sep 2014 18:53:17 +0000 (21:53 +0300)
committerToni Wilen <twilen@winuae.net>
Mon, 22 Sep 2014 18:53:17 +0000 (21:53 +0300)
newcpu.cpp

index 3839fbcab3c4fd1b73d470e49ab8766189814488..8d2c6e94734cbb1d4fc881dc672ef2eb722926f3 100644 (file)
@@ -3637,7 +3637,7 @@ static void bus_error(void)
                Exception (2);
        } CATCH (prb2) {
                cpu_halt (1);
-       }
+       } ENDTRY
 }
 
 #ifndef CPUEMU_11
@@ -3693,7 +3693,7 @@ retry:
        } CATCH (prb) {
                bus_error();
                goto retry;
-       }
+       } ENDTRY
 }
 
 #endif /* CPUEMU_11 */
@@ -3801,7 +3801,7 @@ cont:
        } CATCH (prb) {
                bus_error();
                goto retry;
-       }
+       } ENDTRY
 }
 
 #endif
@@ -3966,7 +3966,7 @@ static void opcodedebug (uae_u32 pc, uae_u16 opcode, bool full)
                addr = mmu_translate (pc, (regs.mmu_ssw & 4) ? 1 : 0, 0, 0);
        } CATCH (prb) {
                fault = 1;
-       }
+       } ENDTRY
        if (!fault) {
                TCHAR buf[100];
                if (full)
@@ -4048,7 +4048,7 @@ retry:
                        return;
                }
                goto retry;
-       }
+       } ENDTRY
 
 }
 
@@ -4104,7 +4104,7 @@ retry:
                        return;
                }
                goto retry;
-       }
+       } ENDTRY
 
 }
 
@@ -4190,7 +4190,7 @@ insretry:
                        return;
                }
                goto retry;
-       }
+       } ENDTRY
 
 }