瀏覽代碼

Merge branch 'master' into grammar-fix

0xAX 7 年之前
父節點
當前提交
29b8c9915c
共有 2 個文件被更改,包括 3 次插入2 次删除
  1. 1 1
      Theory/asm.md
  2. 2 1
      contributors.md

+ 1 - 1
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:

+ 2 - 1
contributors.md

@@ -113,4 +113,5 @@ Thank you to all contributors:
 * [Beomsu Kim](https://github.com/0xF0D0)
 * [Firo Yang](https://github.com/firogh)
 * [Edward Hu](https://github.com/BDHU)
-* [WarpspeedSCP](https://github.com/WarpspeedSCP)
+* [WarpspeedSCP](https://github.com/WarpspeedSCP)
+* [Gabriela Moldovan](https://github.com/gabi-250)