diff --git a/GhidraDocs/GhidraClass/Advanced/Examples/jumpWithinInstruction.c b/GhidraDocs/GhidraClass/Advanced/Examples/jumpWithinInstruction.c index dc1d32e493..384d408567 100644 --- a/GhidraDocs/GhidraClass/Advanced/Examples/jumpWithinInstruction.c +++ b/GhidraDocs/GhidraClass/Advanced/Examples/jumpWithinInstruction.c @@ -20,7 +20,7 @@ void printMessage(void); int main(int argc, char **argv){ asm(".intel_syntax noprefix"); - asm(".byte 0xeb, 0xff, 0xc0, 0x67, 0x48"); + asm(".byte 0xeb, 0xff, 0xc0"); asm(".att_syntax prefix"); printMessage(); return EXIT_SUCCESS; diff --git a/GhidraDocs/GhidraClass/ExerciseFiles/Advanced/jumpWithinInstruction b/GhidraDocs/GhidraClass/ExerciseFiles/Advanced/jumpWithinInstruction index 90182c148a..5c751b1164 100755 Binary files a/GhidraDocs/GhidraClass/ExerciseFiles/Advanced/jumpWithinInstruction and b/GhidraDocs/GhidraClass/ExerciseFiles/Advanced/jumpWithinInstruction differ