Skip to content

Instantly share code, notes, and snippets.

@hsupu
Created March 4, 2021 16:52
Show Gist options
  • Save hsupu/0f38e86d84540ce5a553c767560a08f9 to your computer and use it in GitHub Desktop.
Save hsupu/0f38e86d84540ce5a553c767560a08f9 to your computer and use it in GitHub Desktop.
; 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