- Install MASM32 SDK to
C:\masm32
. - Add
C:\masm32\bin
(the directory containingml.exe
andlink.exe
) toPATH
. - Run
ml /c /coff sokoban.asm
link /SUBSYSTEM:console /LIBPATH:"C:\masm32\lib" sokoban.obj
Alternatively, use GNU make:
make LIBPATH=C:\masm32\lib
Run sokoban.exe
in a terminal supporting ANSI escape sequences (such as Windows Terminal, Fluent Terminal, ConEmu, and the built-in terminal of Visual Studio Code). conhost.exe
is NOT supported.
x86sokoban is licensed under the MIT license.