diff options
author | Russ Cox <[email protected]> | 2011-02-19 21:16:54 -0500 |
---|---|---|
committer | Russ Cox <[email protected]> | 2011-02-19 21:16:54 -0500 |
commit | 9c4fe7ba105c0430c90179fd1e93c3d439a8cbd5 (patch) | |
tree | c3f3c81405ff7b3a2fa2e6d95b029739840fd27c /data.S | |
parent | 97b21b5838759e71144d02ff554f594c56fe54ae (diff) | |
download | xv6-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.S | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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 + |