fixed broken link

Arthur Paulino 2017-12-29 11:05:43 -03:00
parent b24b95f7fc
commit 934a2e77b5

@ -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`| | JNZ | Jump if not zero | `ZF = 0`|
| JZ | Jump if zero | `ZF = 1`| | 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: Let's say that we wanted to check if the value of the register A was equal to 5, we could do this:
```assembly ```assembly