From 60c8998efe87ecd915c5e61f05e977b8af39e341 Mon Sep 17 00:00:00 2001 From: Gabriela Alexandra Moldovan Date: Fri, 12 Jan 2018 13:04:00 +0000 Subject: [PATCH] Add missing colon before label. --- Theory/asm.md | 2 +- contributors.md | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Theory/asm.md b/Theory/asm.md index 8e9b4a5..34ccf93 100644 --- a/Theory/asm.md +++ b/Theory/asm.md @@ -73,7 +73,7 @@ Here we see the `native_load_gdt` function which loads a base address from the [ The second optional `qualifier` is the `goto`. This qualifier tells the compiler that the given assembly statement may perform a jump to one of the labels which are listed in the `GotoLabels`. For example: ```C -__asm__ goto("jmp %l[label]" : : : label); +__asm__ goto("jmp %l[label]" : : : : label); ``` Since we finished with these two qualifiers, let's look at the main part of an assembly statement body. As we have seen above, the main part of an assembly statement consists of the following four parts: diff --git a/contributors.md b/contributors.md index c4ef5d0..dbfcf70 100644 --- a/contributors.md +++ b/contributors.md @@ -112,4 +112,5 @@ Thank you to all contributors: * [Andrés Rojas](https://github.com/c0r3dump3d) * [Beomsu Kim](https://github.com/0xF0D0) * [Firo Yang](https://github.com/firogh) -* [Edward Hu](https://github.com/BDHU) \ No newline at end of file +* [Edward Hu](https://github.com/BDHU) +* [Gabriela Moldovan](https://github.com/gabi-250)