An implementation of breakout in x86 assembly, C and C++.
$ cmake -S . -B build
$ cmake --build build --parallel 8
Optionally you could configure for Release/Debug builds
$ cmake -S . -B build/debug -DCMAKE_BUILD_TYPE=DEBUG
$ cmake -S . -B build/release -DCMAKE_BUILD_TYPE=RELEASE
c:\> cmake -S . -B build
c:\> cmake --build build --config Release
Or you can just open the solution and build in the GUI
c:\> start build\asm_c_cpp.sln