OLD | NEW |
1 %ifidn __OUTPUT_FORMAT__,obj | 1 %ifidn __OUTPUT_FORMAT__,obj |
2 section code use32 class=code align=64 | 2 section code use32 class=code align=64 |
3 %elifidn __OUTPUT_FORMAT__,win32 | 3 %elifidn __OUTPUT_FORMAT__,win32 |
4 %ifdef __YASM_VERSION_ID__ | 4 %ifdef __YASM_VERSION_ID__ |
5 %if __YASM_VERSION_ID__ < 01010000h | 5 %if __YASM_VERSION_ID__ < 01010000h |
6 %error yasm version 1.1.0 or later needed. | 6 %error yasm version 1.1.0 or later needed. |
7 %endif | 7 %endif |
8 ; Yasm automatically includes .00 and complains about redefining it. | 8 ; Yasm automatically includes .00 and complains about redefining it. |
9 ; https://www.tortall.net/projects/yasm/manual/html/objfmt-win32-safeseh.html | 9 ; https://www.tortall.net/projects/yasm/manual/html/objfmt-win32-safeseh.html |
10 %else | 10 %else |
(...skipping 2404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2415 dd 202313229,202313229,202313229,202313229 | 2415 dd 202313229,202313229,202313229,202313229 |
2416 dd 67569157,67569157,67569157,67569157 | 2416 dd 67569157,67569157,67569157,67569157 |
2417 dd 1,1,1,1 | 2417 dd 1,1,1,1 |
2418 dd 27,27,27,27 | 2418 dd 27,27,27,27 |
2419 db 65,69,83,32,102,111,114,32,73,110,116,101,108,32,65,69 | 2419 db 65,69,83,32,102,111,114,32,73,110,116,101,108,32,65,69 |
2420 db 83,45,78,73,44,32,67,82,89,80,84,79,71,65,77,83 | 2420 db 83,45,78,73,44,32,67,82,89,80,84,79,71,65,77,83 |
2421 db 32,98,121,32,60,97,112,112,114,111,64,111,112,101,110,115 | 2421 db 32,98,121,32,60,97,112,112,114,111,64,111,112,101,110,115 |
2422 db 115,108,46,111,114,103,62,0 | 2422 db 115,108,46,111,114,103,62,0 |
2423 segment .bss | 2423 segment .bss |
2424 common _OPENSSL_ia32cap_P 16 | 2424 common _OPENSSL_ia32cap_P 16 |
OLD | NEW |