diff --git a/c2t-96h b/c2t-96h index 38e9998..0891e2d 100755 Binary files a/c2t-96h and b/c2t-96h differ diff --git a/c2t-96h.c b/c2t-96h.c index f64a13a..a238179 100644 --- a/c2t-96h.c +++ b/c2t-96h.c @@ -465,6 +465,7 @@ int main(int argc, char **argv) if(dsk) { fast=autoload=cd=tape=0; + k8=1; model=2; if(numseg != 5) { diff --git a/windows/Makefile b/windows/Makefile new file mode 100644 index 0000000..3ac0dbc --- /dev/null +++ b/windows/Makefile @@ -0,0 +1,27 @@ + + +CC = /usr/local/gcc-4.8.0-qt-4.8.4-for-mingw32/win32-gcc/bin/i586-mingw32-gcc + +all: c2t.exe c2t-96h.exe + +clean: + rm -f c2t.exe c2t-96h.exe c2t.c c2t-96h.c c2t.h fake6502.h + +c2t.exe: c2t.c c2t.h fake6502.h miniz.h + $(CC) -Wall -Wno-unused-value -Wno-unused-function -O3 -o c2t.exe c2t.c + +c2t-96h.exe: c2t-96h.c c2t.h fake6502.h miniz.h + $(CC) -Wall -Wno-unused-value -Wno-unused-function -O3 -o c2t-96h.exe c2t-96h.c + +c2t.c: ../c2t.c + cp ../c2t.c . + +c2t-96h.c: ../c2t-96h.c + cp ../c2t-96h.c . + +c2t.h: ../c2t.h + cp ../c2t.h . + +fake6502.h: ../fake6502.h + cp ../fake6502.h . + diff --git a/windows/c2t-96h.exe b/windows/c2t-96h.exe index a0d82c4..d045d49 100755 Binary files a/windows/c2t-96h.exe and b/windows/c2t-96h.exe differ diff --git a/windows/c2t.exe b/windows/c2t.exe index 4f5a852..e82c8f4 100755 Binary files a/windows/c2t.exe and b/windows/c2t.exe differ