summaryrefslogtreecommitdiff
path: root/source/_posts/2015-09-14-aseembly-hello-world.md
diff options
context:
space:
mode:
Diffstat (limited to 'source/_posts/2015-09-14-aseembly-hello-world.md')
-rw-r--r--source/_posts/2015-09-14-aseembly-hello-world.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/_posts/2015-09-14-aseembly-hello-world.md b/source/_posts/2015-09-14-aseembly-hello-world.md
index 9870d78..1be7b7d 100644
--- a/source/_posts/2015-09-14-aseembly-hello-world.md
+++ b/source/_posts/2015-09-14-aseembly-hello-world.md
@@ -61,7 +61,7 @@ hello db "Hello, world!",0x0a
len equ $ - hello
```
-In the first line of this code we are telling opening the new .data section. This is where we define any constant data our program uses. As a side note, any variables declared here cannot be changed when the program is running. The first variable we declare is hello, and we terminate the string with 0x0a, which will make the computer create a new line after the data. The next line sets the variable len equal to the address of the beginning of the line of the current instruction minus the location of hello, this will evaluate to the size of hello.
+In the first line of this code we are telling opening the new .data section. This is where we define any constant data our program uses. As a side note, any variables declared here cannot be changed when the program is running. The first variable we declare is hello, and we terminate the string with 0x0a, which will make the computer create a new line after the data. The next line sets the variable len equal to the address of the beginning of the line of the current instruction minus the location of hello, this will evaluate to the size of hello.
## Outro