summaryrefslogtreecommitdiff
path: root/deps/gyp/test/win/linker-flags/safeseh_zero.asm
blob: 62da0df4f3359d2465dca2370c13fc98ecf07b63 (plain)
1
2
3
4
5
6
7
8
9
10
.MODEL FLAT, C
.CODE

PUBLIC  zero
zero    PROC
        xor     eax, eax
        ret     0
zero    ENDP

END