X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fjaguar.cpp;h=c717431a88b546cf332acc4863a87c3c4b0e5843;hb=f005034d4a3990efc8e445ce46222ce32600411b;hp=cfbf3ef134ae8861070b4fc0f88895407108b331;hpb=f0a806e6b168b1c9cab5c9d7a27435dc4a76476a;p=virtualjaguar diff --git a/src/jaguar.cpp b/src/jaguar.cpp index cfbf3ef..c717431 100644 --- a/src/jaguar.cpp +++ b/src/jaguar.cpp @@ -1026,7 +1026,7 @@ unsigned int m68k_read_memory_8(unsigned int address) #ifdef ALPINE_FUNCTIONS // Check if breakpoint on memory is active, and deal with it if (bpmActive && address == bpmAddress1) - M68KSetHalt(); + M68KDebugHalt(); #endif // Musashi does this automagically for you, UAE core does not :-P @@ -1085,7 +1085,7 @@ unsigned int m68k_read_memory_16(unsigned int address) #ifdef ALPINE_FUNCTIONS // Check if breakpoint on memory is active, and deal with it if (bpmActive && address == bpmAddress1) - M68KSetHalt(); + M68KDebugHalt(); #endif // Musashi does this automagically for you, UAE core does not :-P @@ -1193,7 +1193,7 @@ unsigned int m68k_read_memory_32(unsigned int address) #ifdef ALPINE_FUNCTIONS // Check if breakpoint on memory is active, and deal with it if (bpmActive && address == bpmAddress1) - M68KSetHalt(); + M68KDebugHalt(); #endif // Musashi does this automagically for you, UAE core does not :-P @@ -1216,7 +1216,7 @@ void m68k_write_memory_8(unsigned int address, unsigned int value) #ifdef ALPINE_FUNCTIONS // Check if breakpoint on memory is active, and deal with it if (bpmActive && address == bpmAddress1) - M68KSetHalt(); + M68KDebugHalt(); #endif // Musashi does this automagically for you, UAE core does not :-P @@ -1273,7 +1273,7 @@ void m68k_write_memory_16(unsigned int address, unsigned int value) #ifdef ALPINE_FUNCTIONS // Check if breakpoint on memory is active, and deal with it if (bpmActive && address == bpmAddress1) - M68KSetHalt(); + M68KDebugHalt(); #endif // Musashi does this automagically for you, UAE core does not :-P @@ -1368,7 +1368,7 @@ void m68k_write_memory_32(unsigned int address, unsigned int value) #ifdef ALPINE_FUNCTIONS // Check if breakpoint on memory is active, and deal with it if (bpmActive && address == bpmAddress1) - M68KSetHalt(); + M68KDebugHalt(); #endif // Musashi does this automagically for you, UAE core does not :-P