> -----Original Message-----
> From: Nick Behnken [mailto:[EMAIL PROTECTED]]
> We could use perl... you can download the cygnus compiler for free for
> Windows... which has a perl interpreter as well as a bash shell.
In that case I would recommend sed or at the most awk for a couple of
reasons. The sed and awk programs are a default part of the Cygwin tools,
http://sourceware.cygnus.com/cygwin, perl is not. Also perl uses far more
resources than awk or sed, there are both more files on the drive and it use
much more memory.
> > > > #define JMPL(label) db 0xe9!!!dw (label-(*+2)) ; jmp near label
> > > >
> > > > ...after gcc -E preprocessed macros. I could be forgetting
> > > > something else. But if now, this would only take a small
> > > > C program to do, and could replace using tools86.
> > > >
> > > > When you see '!!!', generate a newline.
> > > >
> > >
> > > You mean something like "perl -pe 's/!!!/\n/g' file"?
> >
> > Yeah, something like that. Sed, perl, or other stream
> > editor will do as well as C. I suggested C 'cause
> > I'm always in lowest common denominator mode (Windows).