summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPeter Johnson <peter@tortall.net>2001-11-21 08:39:35 +0000
committerPeter Johnson <peter@tortall.net>2001-11-21 08:39:35 +0000
commit9dc4e6eccc6ae1cd87a20c403c813cdc0052b251 (patch)
treedf1545edec09ef84314565f5f1b8d64acead2fc3 /tests
parent825eaa582324bcdb40b3515d22d1b96eb3b39051 (diff)
downloadyasm-9dc4e6eccc6ae1cd87a20c403c813cdc0052b251.tar.gz
How does NASM's bin format handle sections?
svn path=/trunk/yasm/; revision=358
Diffstat (limited to 'tests')
-rw-r--r--tests/nasm/multisect3.asm11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/nasm/multisect3.asm b/tests/nasm/multisect3.asm
new file mode 100644
index 00000000..cb8a966c
--- /dev/null
+++ b/tests/nasm/multisect3.asm
@@ -0,0 +1,11 @@
+[section .text]
+db 1
+
+[section .data]
+db 2
+
+[section .text]
+db 3
+
+[section .data]
+db 4