Created
March 4, 2021 16:52
-
-
Save hsupu/0f38e86d84540ce5a553c767560a08f9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; ml64 /c a.S | |
; dumpbin /all a.obj > a.obj.txt | |
text segment PARA 'DATA' | |
a label PTR | |
; extern magic : DWORD | |
magic = 12345678h | |
; extern len : ABS | |
len = a_end - a | |
dd magic | |
dd len | |
a_end label PTR | |
text ends | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment