aboutsummaryrefslogtreecommitdiff
path: root/test/pecoff/Inputs/bss.asm
diff options
context:
space:
mode:
Diffstat (limited to 'test/pecoff/Inputs/bss.asm')
-rw-r--r--test/pecoff/Inputs/bss.asm20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/pecoff/Inputs/bss.asm b/test/pecoff/Inputs/bss.asm
deleted file mode 100644
index 802edee8591d..000000000000
--- a/test/pecoff/Inputs/bss.asm
+++ /dev/null
@@ -1,20 +0,0 @@
-.586
-.model flat, c
-
-extern ExitProcess@4 : PROC
-
-_BSS SEGMENT
- _x DD 064H DUP (?)
- _y DD 064H DUP (?)
-_BSS ENDS
-
-.code
-start:
- mov eax, 42
- mov _x, eax
- mov eax, _x
- push eax
- call ExitProcess@4
-end start
-
-end