Histogram code with all the tricks :) Needs NASM + VC++

August 9, 2019 ยท View on GitHub

@echo off setlocal cd %~dp0 call vcvars amd64 ....\bin\win32\nasm -f win64 -g -o histo_asm.obj histo_asm.nas || exit /b 1 cl /Zi /O2 /nologo histotest.cpp histo_asm.obj || exit /b 1