aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/development
diff options
context:
space:
mode:
Diffstat (limited to 'src/development')
-rw-r--r--src/development/gas.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/development/gas.md b/src/development/gas.md
index d0ae284..126f84d 100644
--- a/src/development/gas.md
+++ b/src/development/gas.md
@@ -15,10 +15,10 @@
- `.byte`, `.2byte`, `.4byte`, `.8byte` to define a N byte value
```x86asm
.byte 0xaa
- .2byte 0xaabb
+ .2byte 0xaabb # .word
.2byte 0xaa, 0xbb
- .4byte 0xaabbccdd
- .8byte 0xaabbccdd11223344
+ .4byte 0xaabbccdd # .long
+ .8byte 0xaabbccdd11223344 # .quad
```
- `.ascii` to define an ascii string
```x86asm