all:
	gcc -S main.c -o main.s
	gcc -c main.c -o main.o
	ld main.o -o main.exe -subsystem windows
	dumppe -disasm main.exe >main.dasm
