Hi,
I want to change the the default alignment of masms simplified segment directives (.code,.data, .const, etc.) from 'para' to 'page'. At the moment I am defineing my own segments using the 'segment'-directive but I don't know how to create a segment like '.data?' :(.
Regards
Uwe
I want to change the the default alignment of masms simplified segment directives (.code,.data, .const, etc.) from 'para' to 'page'. At the moment I am defineing my own segments using the 'segment'-directive but I don't know how to create a segment like '.data?' :(.
Regards
Uwe
just define
And MASM needs to be convinced accepting "dotnames" by
option dotname
japheth
.data? segment para public 'DATA'
.....
.data? ends
And MASM needs to be convinced accepting "dotnames" by
option dotname
japheth