aboutsummaryrefslogtreecommitdiff
path: root/data.asm
diff options
context:
space:
mode:
Diffstat (limited to 'data.asm')
-rw-r--r--data.asm7
1 files changed, 7 insertions, 0 deletions
diff --git a/data.asm b/data.asm
new file mode 100644
index 0000000..35af1c4
--- /dev/null
+++ b/data.asm
@@ -0,0 +1,7 @@
+section .data
+
+global array
+global size
+
+array: dd 3,1,4,1,5,9,2,6,5,3,5,8,9,7,9,3
+size: equ ($-array)/4