diff --git a/MazezaM/MAZEZAM.COM b/MazezaM/MAZEZAM.COM deleted file mode 100644 index 6044f3d..0000000 Binary files a/MazezaM/MAZEZAM.COM and /dev/null differ diff --git a/MazezaM/Makefile b/MazezaM/Makefile new file mode 100644 index 0000000..0b78712 --- /dev/null +++ b/MazezaM/Makefile @@ -0,0 +1,11 @@ +CC = zcc +CFLAGS = +cpm -lndos -O3 + +all: mazezam.com + +%.com : %.c + $(CC) $(CFLAGS) -o $@ $< + +clean: + $(RM) *~ mazezam.com zcc_opt.def + diff --git a/MazezaM/mazezam.com b/MazezaM/mazezam.com new file mode 100644 index 0000000..f126813 Binary files /dev/null and b/MazezaM/mazezam.com differ