Windows console-mode VECCE, FC Jan 2026

This version fixes the issues with handling NUL files and setting the reverse-
video cursor when using the new Windows Terminal.  There are also now just two
command and message lines at the bottom of the screen, rather than four (EMAS-
style, with two blank lines above the command and message lines.)

Contents:

VECCE.IMP is pretty standard IMP vecce.  To write to the screen, it calls out to...
CSUPP.C   which contains C-language calls to the relevant Windows API functions.
RUNIMP.C  is just the Andy Davis 32-bit Imp77 library file of the same name.
          Linker fails (missing main program) if this comes from the library
          rather than the linker command line.

Prerequisites:

* Andy Davis 32-bit x86 Imp77 compiler and library
* Microsoft C run-time library and linker (I used VC++ 2010, now very old!)

Building is manual:

imp32 /c vecce
imp32 /c runimp
cl /c csupp.c
link vecce csupp runimp

END
