From 934a2e77b513a4b9045738bbefd00495e40c9579 Mon Sep 17 00:00:00 2001 From: Arthur Paulino Date: Fri, 29 Dec 2017 11:05:43 -0300 Subject: [PATCH] fixed broken link --- Basic-Assembly-tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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