]> 4ch.mooo.com Git - 16.git/commitdiff
i done fucked it up
authorsparky4 <sparky4@cock.li>
Wed, 22 Jul 2015 00:57:18 +0000 (19:57 -0500)
committersparky4 <sparky4@cock.li>
Wed, 22 Jul 2015 00:57:18 +0000 (19:57 -0500)
modified:   16.exe
modified:   awoo.sh
modified:   fmemtest.exe
modified:   fontgfx.exe
modified:   fonttest.exe
modified:   inputest.exe
modified:   makefile
modified:   maptest.exe
renamed:    exmmtest.exe -> mmtest.exe
modified:   palettec.exe
modified:   pcxtest.exe
modified:   sountest.exe
renamed:    src/exmmtest.c -> src/mmtest.c
modified:   test.exe
modified:   test2.exe
modified:   tsthimem.exe

16 files changed:
16.exe
awoo.sh
fmemtest.exe
fontgfx.exe
fonttest.exe
inputest.exe
makefile
maptest.exe
mmtest.exe [moved from exmmtest.exe with 84% similarity]
palettec.exe
pcxtest.exe
sountest.exe
src/mmtest.c [moved from src/exmmtest.c with 100% similarity]
test.exe
test2.exe
tsthimem.exe

diff --git a/16.exe b/16.exe
index da73190178aba1e5903706af241cf4ac7516fdc5..adba10fcdaf867fe22f2977c296013f3184ceafb 100644 (file)
Binary files a/16.exe and b/16.exe differ
diff --git a/awoo.sh b/awoo.sh
index 5ef0ca1556a539dedbc726c179d6a5ea5b3884af..8a4cebd9349282518d7efca4dde125e5e9bd6329 100644 (file)
--- a/awoo.sh
+++ b/awoo.sh
@@ -1,4 +1,4 @@
 #!/bin/bash
 git add .
 bash ./boop.sh
-cp exmmtest.exe /var/www/html/
+cp mmtest.exe /var/www/html/
index 98768a3dd858f9202da9b812d1c069273b6220d8..e10d1ba53ca5cce311bfccd0a7c5cf9546c7ccf3 100644 (file)
Binary files a/fmemtest.exe and b/fmemtest.exe differ
index 102dbebd8c4a0c1f58b8ab7decb99c17bc0ff570..6b0a4ea30e73398db74985ac0e7280d80d52044e 100644 (file)
Binary files a/fontgfx.exe and b/fontgfx.exe differ
index e791c326bc2cfb53d3e2a428a26e87b684a741f6..20ff5d62f7459d66ed4ae136f408c92333bb22c6 100644 (file)
Binary files a/fonttest.exe and b/fonttest.exe differ
index 874f2484849956d1b6bee954c4d9bab6e94c9163..152e4f48bad271b5a608856d0253075bdaa01cc7 100644 (file)
Binary files a/inputest.exe and b/inputest.exe differ
index d74ea80830cca80a12303d1809e829e9c9e98fdf..b1f470a760d058d449a97b8ef228bcca0fad8259 100644 (file)
--- a/makefile
+++ b/makefile
@@ -13,13 +13,13 @@ TARGET_OS = dos
 #-zkl = current codepage
 
 DFLAGS=-DTARGET_MSDOS=16 -DMSDOS=1 -zm
-CFLAGS=-zk0 -wo -x -mc -zu# -k16384# -zdp# -zp16 -zq
+CFLAGS=-zk0 -wo -x -mc -zu -k32768#16384# -zdp# -zp16 -zq
 OFLAGS=-ot -ox -ob -oh -or# -om -ol -ol+
 FLAGS=-0 -d2 -lr $(OFLAGS) $(CFLAGS) $(DFLAGS)
 SRC=src$(DIRSEP)
 SRCLIB=$(SRC)lib$(DIRSEP)
 JSMNLIB=$(SRCLIB)jsmn$(DIRSEP)
-EXMMLIB=$(SRCLIB)exmm$(DIRSEP)
+#EXMMLIB=$(SRCLIB)exmm$(DIRSEP)
 DOSLIB=$(SRCLIB)doslib$(DIRSEP)
 WCPULIB=$(SRCLIB)wcpu$(DIRSEP)
 
@@ -28,7 +28,7 @@ DOSLIBOBJ = adlib.$(OBJ) midi.$(OBJ) 8254.$(OBJ) 8259.$(OBJ) dos.$(OBJ) cpu.$(OB
 16LIBOBJS = 16_in.$(OBJ) 16_mm.$(OBJ) wcpu.$(OBJ) 16_head.$(OBJ) scroll16.$(OBJ) 16_ca.$(OBJ)
 GFXLIBOBJS = modex16.$(OBJ) bitmap.$(OBJ) planar.$(OBJ) 16text.$(OBJ)
 
-all: 16.exe exmmtest.exe test.exe pcxtest.exe test2.exe palettec.exe maptest.exe fmemtest.exe fonttest.exe fontgfx.exe sountest.exe tsthimem.exe inputest.exe
+all: 16.exe mmtest.exe test.exe pcxtest.exe test2.exe palettec.exe maptest.exe fmemtest.exe fonttest.exe fontgfx.exe sountest.exe tsthimem.exe inputest.exe
 #testemm.exe testemm0.exe fonttes0.exe miditest.exe
 
 #
@@ -95,8 +95,8 @@ maptest.exe: maptest.$(OBJ) mapread.$(OBJ) jsmn.$(OBJ) 16.lib
 fmemtest.exe: fmemtest.$(OBJ) 16.lib
        wcl $(FLAGS) fmemtest.$(OBJ) 16.lib
 
-exmmtest.exe: exmmtest.$(OBJ) 16.lib
-       wcl $(FLAGS) exmmtest.$(OBJ) 16.lib
+mmtest.exe: mmtest.$(OBJ) 16.lib
+       wcl $(FLAGS) mmtest.$(OBJ) 16.lib
 
 #
 #executable's objects
@@ -158,8 +158,8 @@ testemm0.$(OBJ): $(SRC)testemm0.c
 tsthimem.$(OBJ): $(SRC)tsthimem.c
        wcl $(FLAGS) -c $(SRC)tsthimem.c
 
-exmmtest.$(OBJ): $(SRC)exmmtest.c
-       wcl $(FLAGS) -c $(SRC)exmmtest.c
+mmtest.$(OBJ): $(SRC)mmtest.c
+       wcl $(FLAGS) -c $(SRC)mmtest.c
 
 #
 #non executable objects libraries
index e8de1797bc32c6ae978b8c40dc901c42c2f6286a..33832a17416a11a34b4d23a545a0f01d85e29d57 100644 (file)
Binary files a/maptest.exe and b/maptest.exe differ
similarity index 84%
rename from exmmtest.exe
rename to mmtest.exe
index ea03d7b74b82db43ae15b543ccfe711a768725a0..3f26b77f9ec63eede9d123fac84466b9443c7d47 100644 (file)
Binary files a/exmmtest.exe and b/mmtest.exe differ
index 4216e6f4f7c79b089b8bc53b0f7629e27a8a9314..224f77393662486d61624616c536b776a3884546 100644 (file)
Binary files a/palettec.exe and b/palettec.exe differ
index d724fb15128390755fa01aee925bd03d0de94683..6aaad16eea1032d9ce8dfbd1cf09444f2f7e4de6 100644 (file)
Binary files a/pcxtest.exe and b/pcxtest.exe differ
index c5fdcfcdeb3593d93a1b653909ea6e8e3d561545..8075c8a07f2b27efc2fd2a36edd0b3066131e324 100644 (file)
Binary files a/sountest.exe and b/sountest.exe differ
similarity index 100%
rename from src/exmmtest.c
rename to src/mmtest.c
index ae9a9e0f5eb7319e6b8e70c845fdbc4e9d55a31d..fa7d51c8febd4db5fa262673252761fcfeb721bf 100644 (file)
Binary files a/test.exe and b/test.exe differ
index 1150f840e675eed3b33fe1ea962abb645f788f74..335a1cbb2cb807f137b6399f3024957da55bb101 100644 (file)
Binary files a/test2.exe and b/test2.exe differ
index e54550cd638ef123c2b992bff75f1d24117608b2..f8e7c7735f9e8382adf4f6a938683c42960cbc38 100644 (file)
Binary files a/tsthimem.exe and b/tsthimem.exe differ