MAME-based per-pixel-accurate render plugin for the N64 video interface.

To install:
    1.  `mylittle-nocomment.dll` goes in $emulator/Plugin.
    2.  `msvcr120.dll` should already be installed to %systemroot%/system32
        for Win32 users or, for Win64 users, %systemroot%/syswow64, but, if it
        is not, it can quickly be installed to the root emulator, "EXE folder".
    3.  Use `mylittle-nocomment_320x240.dll` for typical frame-buffer-native
        resolution in most games for a smaller, more native drawing size.
        Warning:  At 320x240 resolution, the VI pre-scale screen is scaled down,
        causing undefined DirectDraw blurring.  A fix to this was installed, but
        it may offset the final column of pixels to the right.  For the most
        accuracy, consider using the default, 640x480 build.

To compile:
    1.  Check the official repository for any source updates.
    2.  For this code base, do not use foreign compilers like GCC/MinGW, as the
        code here was unfortunately optimized in ways determinal to non-
        Microsoft compilers.  Performance would be far worse off.
    3.  Open src/mylittle-nocomment.sln in Microsoft Visual Studio 2013.
    4.  Make sure to use the Release configuration mode when building.
    5.  After compiling, linking will require ddraw.lib and dxguid.lib to be
        installed in the appropriate directories.

For more information about the plugin, see src/mylittle-nocomment/CREDITS.txt.

-- updated 2014.03.28 --
    * moved crt/msvcr120.dll to a separate archive
    * added a conditional fix to DirectDraw down-scaling and a warning
    * fixed screen height from 237 pixels to 240 pixels
