summaryrefslogtreecommitdiff
path: root/data.S
diff options
context:
space:
mode:
authorRuss Cox <[email protected]>2011-02-19 21:16:54 -0500
committerRuss Cox <[email protected]>2011-02-19 21:16:54 -0500
commit9c4fe7ba105c0430c90179fd1e93c3d439a8cbd5 (patch)
treec3f3c81405ff7b3a2fa2e6d95b029739840fd27c /data.S
parent97b21b5838759e71144d02ff554f594c56fe54ae (diff)
downloadxv6-labs-9c4fe7ba105c0430c90179fd1e93c3d439a8cbd5.tar.gz
xv6-labs-9c4fe7ba105c0430c90179fd1e93c3d439a8cbd5.tar.bz2
xv6-labs-9c4fe7ba105c0430c90179fd1e93c3d439a8cbd5.zip
xv6: formatting, cleanup, rev5
Diffstat (limited to 'data.S')
-rw-r--r--data.S7
1 files changed, 7 insertions, 0 deletions
diff --git a/data.S b/data.S
new file mode 100644
index 0000000..47f05b3
--- /dev/null
+++ b/data.S
@@ -0,0 +1,7 @@
+# Define "data" symbol to mark beginning of data segment.
+# Must be linked before any other data on ld command line.
+.data
+.globl data
+data:
+ .word 1
+