This commit is contained in:
Frater 2017-09-24 01:45:36 +02:00
commit 43352ff262
1291 changed files with 220976 additions and 0 deletions

18
TWIST/MAKEFILE Normal file
View file

@ -0,0 +1,18 @@
all : t.exe
objs=main.obj twist.obj asm.obj ..\dis\disc.obj
asm_f = /ML /m2 /s /JJUMPS
#c_f = /AL /c /W1 /qc
c_f = /AL /c /W1 /Oxaz
.asm.obj :
tasm $(asm_f) $<
.c.obj :
cl $(c_f) $<
t.exe : $(objs)
link /E $(objs),t.exe,nul;
twist.asm : twstloop.inc