From 24b8fe4bd2b47e5e5f39a7643910217589b431de Mon Sep 17 00:00:00 2001 From: Johannes Stoelp Date: Sun, 13 Apr 2025 23:18:35 +0200 Subject: gas: word/long/quad --- src/development/gas.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/development') 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 -- cgit v1.2.3