On Tue, 2004-06-01 at 09:50 +0200, Hans Leidekker wrote:
I suspect .previous is ELF specific?
Yes, .previous is ELF specific. It reverts the assembler to generating output in whatever the previous section was, so if you write:
.text blah blah blah .previous
then you are now back in the section you were before .text - PE doesn't really have the same idea of sections as ELF does.
thanks -mike