private global vs. public global
What's the difference between the export of a symbol by using "public global" instead of "privat开发者_C百科e global"?
See the NASM docs: private segments do not get combined, public segments do. Nothing to do with symbols directly AFAIK. global
is used for exported symbols.
精彩评论