Files
clang-p2996/lld/test/pecoff/Inputs/bss.asm
Rui Ueyama dcf09476ff [PECOFF] Emit BSS section.
llvm-svn: 187460
2013-07-30 22:56:46 +00:00

21 lines
211 B
NASM

.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