diff --git a/Basic-Assembly-tutorial.md b/Basic-Assembly-tutorial.md index f7130e4..2f5ff9d 100644 --- a/Basic-Assembly-tutorial.md +++ b/Basic-Assembly-tutorial.md @@ -362,7 +362,7 @@ Conditional jumps are instructions that only change the IP if a condition is met | JNZ | Jump if not zero | `ZF = 0`| | JZ | Jump if zero | `ZF = 1`| -You can read the FLAGS section on the [CPU page](https://github.com/simon987/Much-Assembly-Required/wiki/Central-processing-unit-(CPU)#the-flags-register) to know exactly in which condition the flags are set. +You can read the FLAGS section on the [CPU page](https://github.com/simon987/Much-Assembly-Required/wiki/CPU#the-flags-register) to know exactly in which condition the flags are set. Let's say that we wanted to check if the value of the register A was equal to 5, we could do this: ```assembly