]> 4ch.mooo.com Git - 16.git/commitdiff
looking at tesuto now~
authorsparky4 <sparky4@cock.li>
Fri, 13 May 2016 15:24:40 +0000 (10:24 -0500)
committersparky4 <sparky4@cock.li>
Fri, 13 May 2016 15:24:40 +0000 (10:24 -0500)
makefile
src/test0.c [new file with mode: 0755]

index 86c191bc8c609114e31b487fad04436578b4a4d9..9de31d4832b8586528e7e256919e945208fa18a1 100755 (executable)
--- a/makefile
+++ b/makefile
@@ -82,7 +82,7 @@ GFXLIBOBJS = modex16.$(OBJ) bitmap.$(OBJ) planar.$(OBJ) 16text.$(OBJ) bakapee.$(
 
 DOSLIBLIBS=$(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)cpu$(DIRSEP)dos86h$(DIRSEP)cpu.lib $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)dos$(DIRSEP)dos86h$(DIRSEP)dos.lib $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)vga$(DIRSEP)dos86h$(DIRSEP)vga.lib
 
-TESTEXEC = exmmtest.exe test.exe pcxtest.exe pcxtest2.exe test2.exe palettec.exe maptest.exe fmemtest.exe fonttest.exe fontgfx.exe scroll.exe vgmtest.exe inputest.exe palettel.exe planrpcx.exe
+TESTEXEC = exmmtest.exe test.exe test0.exe pcxtest.exe pcxtest2.exe test2.exe palettec.exe maptest.exe fmemtest.exe fonttest.exe fontgfx.exe scroll.exe vgmtest.exe inputest.exe palettel.exe planrpcx.exe
 
 EXEC = 16.exe bakapi.exe $(TESTEXEC) tesuto.exe
 
@@ -123,6 +123,9 @@ test.exe: test.$(OBJ) gfx.lib 16_in.$(OBJ) 16_head.$(OBJ) $(DOSLIBLIBS) $(16LIB)
 test2.exe: test2.$(OBJ) $(DOSLIBLIBS) gfx.lib
        wcl $(FLAGS) test2.$(OBJ) $(DOSLIBLIBS) gfx.lib -fm=test2.mah
 
+test0.exe: test0.$(OBJ)
+       wcl $(FLAGS) test0.$(OBJ) -fm=test0.mah
+
 fonttest.exe: fonttest.$(OBJ) $(16LIB) gfx.lib
        wcl $(FLAGS) fonttest.$(OBJ) $(16LIB) gfx.lib -fm=fonttest.mah
 
@@ -182,6 +185,9 @@ test.$(OBJ): $(SRC)test.c $(SRCLIB)modex16.h
 test2.$(OBJ): $(SRC)test2.c $(SRCLIB)modex16.h
        wcl $(FLAGS) -c $(SRC)test2.c
 
+test0.$(OBJ): $(SRC)test0.c
+       wcl $(FLAGS) -c $(SRC)test0.c
+
 pcxtest.$(OBJ): $(SRC)pcxtest.c $(SRCLIB)modex16.h
        wcl $(FLAGS) -c $(SRC)pcxtest.c
 
diff --git a/src/test0.c b/src/test0.c
new file mode 100755 (executable)
index 0000000..f5eb99b
--- /dev/null
@@ -0,0 +1,14 @@
+#include <stdio.h>\r
+#include <malloc.h>\r
+\r
+void main()\r
+{\r
+       unsigned w;\r
+       unsigned far *z;\r
+//     w = _nmalloc(sizeof(unsigned));\r
+       z=(&w);\r
+       for(w=0; w<16;w++)\r
+       {\r
+               printf("z=(%Fp)%u       w=(%Fp)%u\n", z, *z, &w, w);\r
+       }\r
+}\r