public struct MyStr
{
public int Age;
public string Name;
public ushort Type;
}
This file contains 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
.8086 | |
data SEGMENT PARA USE16 PUBLIC 'data' | |
msg DB "Test calling convertions", 24h | |
data ENDS | |
code SEGMENT PARA USE16 PUBLIC 'code' | |
BEGIN: | |
main PROC C |