Hi All
I started working in new project "SphinxC-- 2 MASM" , that will translate c-- code to masm code.
I have stuck with nested structure , consider next c-- example.
#define DWORD unsigned int
struct demo
{
long vv;
struct _name{
DWORD _Short; // if 0, use LongName
DWORD _Long; // offset into string table
}Name ;
};
i got this in masm
demo STRUC
vv SDWORD ?
_name STRUC
_Short DWORD ?
_Long DWORD ?
_name EndS
Name _name <>
demo EndS
but seems that UASM did not supports nested structure ?
any help please?