wwww
リビジョン | d826b6897d3809867f905b4c2baaee8e10006512 (tree) |
---|---|
日時 | 2016-04-19 01:57:34 |
作者 | sparky4 <sparky4@cock...> |
コミッター | sparky4 |
16.c needs to probe DOS and VGA before using modex library. -repo sync-
@@ -17,8 +17,8 @@ makefile~ | ||
17 | 17 | README~ |
18 | 18 | TODO~ |
19 | 19 | LICENCE~ |
20 | -#*.map | |
21 | -#*.MAP | |
20 | +*.mah | |
21 | +*.MAH | |
22 | 22 | !modex.lib |
23 | 23 | img |
24 | 24 | !.git/config |
@@ -95,23 +95,23 @@ all: $(EXEC) joytest.exe vrs | ||
95 | 95 | #game and bakapi executables |
96 | 96 | # |
97 | 97 | 16.exe: 16.$(OBJ) mapread.$(OBJ) jsmn.$(OBJ) $(16LIBOBJS) gfx.lib |
98 | - wcl $(FLAGS) $(16FLAGS) 16.$(OBJ) mapread.$(OBJ) jsmn.$(OBJ) $(16LIBOBJS) gfx.lib -fm=16.map | |
98 | + wcl $(FLAGS) $(16FLAGS) 16.$(OBJ) mapread.$(OBJ) jsmn.$(OBJ) $(16LIBOBJS) gfx.lib -fm=16.mah | |
99 | 99 | |
100 | 100 | bakapi.exe: bakapi.$(OBJ) gfx.lib $(DOSLIBLIBS) |
101 | - wcl $(FLAGS) $(BAKAPIFLAGS) bakapi.$(OBJ) gfx.lib $(DOSLIBLIBS) -fm=bakapi.map | |
101 | + wcl $(FLAGS) $(BAKAPIFLAGS) bakapi.$(OBJ) gfx.lib $(DOSLIBLIBS) -fm=bakapi.mah | |
102 | 102 | #modex.lib |
103 | 103 | # |
104 | 104 | #Test Executables! |
105 | 105 | # |
106 | 106 | scroll.exe: scroll.$(OBJ) mapread.$(OBJ) jsmn.$(OBJ) $(16LIBOBJS) gfx.lib |
107 | - wcl $(FLAGS) scroll.$(OBJ) mapread.$(OBJ) jsmn.$(OBJ) $(16LIBOBJS) gfx.lib -fm=scroll.map | |
107 | + wcl $(FLAGS) scroll.$(OBJ) mapread.$(OBJ) jsmn.$(OBJ) $(16LIBOBJS) gfx.lib -fm=scroll.mah | |
108 | 108 | scroll.$(OBJ): $(SRC)scroll.c |
109 | 109 | wcl $(FLAGS) -c $(SRC)scroll.c |
110 | 110 | |
111 | 111 | |
112 | 112 | # NOTE: dos86h = 16-bit huge memory model. memory model must match! |
113 | 113 | tesuto.exe: tesuto.$(OBJ) $(DOSLIBLIBS) 16_head.$(OBJ) gfx.lib |
114 | -# %write tmp.cmd option quiet option map=tesuto.map $(DOSLIB_LDFLAGS_DOS16H) file tesuto.obj name tesuto.exe | |
114 | +# %write tmp.cmd option quiet option map=tesuto.mah $(DOSLIB_LDFLAGS_DOS16H) file tesuto.obj name tesuto.exe | |
115 | 115 | # %write tmp.cmd library $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)cpu$(DIRSEP)dos86h$(DIRSEP)cpu.lib |
116 | 116 | # %write tmp.cmd library $(DOSLIBDIR)$(DIRSEP)hw$(DIRSEP)dos$(DIRSEP)dos86h$(DIRSEP)dos.lib |
117 | 117 | # @wlink @tmp.cmd |
@@ -120,22 +120,22 @@ tesuto.$(OBJ): $(SRC)tesuto.c | ||
120 | 120 | wcl $(FLAGS) $(WCLQ) -c $(SRC)tesuto.c |
121 | 121 | |
122 | 122 | test.exe: test.$(OBJ) gfx.lib 16_in.$(OBJ) 16_head.$(OBJ) |
123 | - wcl $(FLAGS) test.$(OBJ) gfx.lib 16_in.$(OBJ) 16_head.$(OBJ) -fm=test.map | |
123 | + wcl $(FLAGS) test.$(OBJ) gfx.lib 16_in.$(OBJ) 16_head.$(OBJ) -fm=test.mah | |
124 | 124 | |
125 | 125 | test2.exe: test2.$(OBJ) gfx.lib |
126 | - wcl $(FLAGS) test2.$(OBJ) gfx.lib -fm=test2.map | |
126 | + wcl $(FLAGS) test2.$(OBJ) gfx.lib -fm=test2.mah | |
127 | 127 | |
128 | 128 | fonttest.exe: fonttest.$(OBJ) $(16LIBOBJS) gfx.lib |
129 | - wcl $(FLAGS) fonttest.$(OBJ) $(16LIBOBJS) gfx.lib -fm=fonttest.map | |
129 | + wcl $(FLAGS) fonttest.$(OBJ) $(16LIBOBJS) gfx.lib -fm=fonttest.mah | |
130 | 130 | |
131 | 131 | #fonttes0.exe: fonttes0.$(OBJ) $(16LIBOBJS) |
132 | 132 | # wcl $(FLAGS) fonttes0.$(OBJ) $(16LIBOBJS) |
133 | 133 | |
134 | 134 | fontgfx.exe: fontgfx.$(OBJ) $(16LIBOBJS) gfx.lib $(DOSLIBLIBS) |
135 | - wcl $(FLAGS) fontgfx.$(OBJ) $(16LIBOBJS) gfx.lib $(DOSLIBLIBS) -fm=fontgfx.map | |
135 | + wcl $(FLAGS) fontgfx.$(OBJ) $(16LIBOBJS) gfx.lib $(DOSLIBLIBS) -fm=fontgfx.mah | |
136 | 136 | |
137 | 137 | inputest.exe: inputest.$(OBJ) $(16LIBOBJS) |
138 | - wcl $(FLAGS) inputest.$(OBJ) $(16LIBOBJS) -fm=inputest.map | |
138 | + wcl $(FLAGS) inputest.$(OBJ) $(16LIBOBJS) -fm=inputest.mah | |
139 | 139 | |
140 | 140 | #sountest.exe: sountest.$(OBJ) $(16LIBOBJS) |
141 | 141 | # wcl $(FLAGS) sountest.$(OBJ) $(16LIBOBJS) |
@@ -144,7 +144,7 @@ inputest.exe: inputest.$(OBJ) $(16LIBOBJS) | ||
144 | 144 | # wcl $(FLAGS) miditest.$(OBJ) $(16LIBOBJS) $(DOSLIBEXMMOBJ) midi.$(OBJ) |
145 | 145 | |
146 | 146 | tsthimem.exe: tsthimem.$(OBJ) $(16LIBOBJS) $(DOSLIBEXMMOBJ) |
147 | - wcl $(FLAGS) tsthimem.$(OBJ) $(16LIBOBJS) $(DOSLIBEXMMOBJ) -fm=tsthimem.map | |
147 | + wcl $(FLAGS) tsthimem.$(OBJ) $(16LIBOBJS) $(DOSLIBEXMMOBJ) -fm=tsthimem.mah | |
148 | 148 | |
149 | 149 | #testemm.exe: testemm.$(OBJ) $(16LIBOBJS) $(DOSLIBEXMMOBJ) |
150 | 150 | # wcl $(FLAGS) testemm.$(OBJ) $(16LIBOBJS) $(DOSLIBEXMMOBJ) |
@@ -153,22 +153,22 @@ tsthimem.exe: tsthimem.$(OBJ) $(16LIBOBJS) $(DOSLIBEXMMOBJ) | ||
153 | 153 | # wcl $(FLAGS) testemm0.$(OBJ) $(16LIBOBJS) $(DOSLIBEXMMOBJ) |
154 | 154 | |
155 | 155 | pcxtest.exe: pcxtest.$(OBJ) gfx.lib |
156 | - wcl $(FLAGS) pcxtest.$(OBJ) gfx.lib -fm=pcxtest.map | |
156 | + wcl $(FLAGS) pcxtest.$(OBJ) gfx.lib -fm=pcxtest.mah | |
157 | 157 | |
158 | 158 | palettec.exe: palettec.$(OBJ) gfx.lib #$(16LIBOBJS) |
159 | - wcl $(FLAGS) palettec.$(OBJ) gfx.lib -fm=palettec.map #$(16LIBOBJS) | |
159 | + wcl $(FLAGS) palettec.$(OBJ) gfx.lib -fm=palettec.mah #$(16LIBOBJS) | |
160 | 160 | |
161 | 161 | palettel.exe: palettel.$(OBJ) gfx.lib #$(16LIBOBJS) |
162 | - wcl $(FLAGS) palettel.$(OBJ) gfx.lib -fm=palettel.map #$(16LIBOBJS) | |
162 | + wcl $(FLAGS) palettel.$(OBJ) gfx.lib -fm=palettel.mah #$(16LIBOBJS) | |
163 | 163 | |
164 | 164 | pcxtest2.exe: pcxtest2.$(OBJ) gfx.lib |
165 | - wcl $(FLAGS) pcxtest2.$(OBJ) gfx.lib -fm=pcxtest2.map | |
165 | + wcl $(FLAGS) pcxtest2.$(OBJ) gfx.lib -fm=pcxtest2.mah | |
166 | 166 | |
167 | 167 | planrpcx.exe: planrpcx.$(OBJ) gfx.lib |
168 | - wcl $(FLAGS) planrpcx.$(OBJ) gfx.lib -fm=planrpcx.map | |
168 | + wcl $(FLAGS) planrpcx.$(OBJ) gfx.lib -fm=planrpcx.mah | |
169 | 169 | |
170 | 170 | maptest.exe: maptest.$(OBJ) mapread.$(OBJ) jsmn.$(OBJ) $(16LIBOBJS) gfx.lib |
171 | - wcl $(FLAGS) maptest.$(OBJ) mapread.$(OBJ) jsmn.$(OBJ) $(16LIBOBJS) gfx.lib -fm=maptest.map | |
171 | + wcl $(FLAGS) maptest.$(OBJ) mapread.$(OBJ) jsmn.$(OBJ) $(16LIBOBJS) gfx.lib -fm=maptest.mah | |
172 | 172 | |
173 | 173 | #maptest0.exe: maptest0.$(OBJ) fmapread.$(OBJ) farjsmn.$(OBJ) |
174 | 174 | # wcl $(FLAGS) $(MFLAGS) maptest0.$(OBJ) fmapread.$(OBJ) farjsmn.$(OBJ) |
@@ -180,14 +180,14 @@ maptest.exe: maptest.$(OBJ) mapread.$(OBJ) jsmn.$(OBJ) $(16LIBOBJS) gfx.lib | ||
180 | 180 | # wcl $(FLAGS) $(MFLAGS) emsdump.$(OBJ) memory.$(OBJ) |
181 | 181 | |
182 | 182 | fmemtest.exe: fmemtest.$(OBJ) $(16LIBOBJS) |
183 | - wcl $(FLAGS) fmemtest.$(OBJ) $(16LIBOBJS) -fm=fmemtest.map | |
183 | + wcl $(FLAGS) fmemtest.$(OBJ) $(16LIBOBJS) -fm=fmemtest.mah | |
184 | 184 | |
185 | 185 | exmmtest.exe: exmmtest.$(OBJ) $(16LIBOBJS) |
186 | - wcl $(FLAGS) exmmtest.$(OBJ) -fm=exmmtest.map $(16LIBOBJS) | |
186 | + wcl $(FLAGS) exmmtest.$(OBJ) -fm=exmmtest.mah $(16LIBOBJS) | |
187 | 187 | |
188 | 188 | vgmtest.exe: vgmtest.$(OBJ) vgmsnd.lib $(16LIBOBJS) |
189 | - wcl $(FLAGS) vgmtest.$(OBJ) vgmsnd.lib -fm=vgmtest.map $(16LIBOBJS) | |
190 | - #====wcl -mc vgmtest.$(OBJ) $(VGMSNDOBJ) -fm=vgmtest.map | |
189 | + wcl $(FLAGS) vgmtest.$(OBJ) vgmsnd.lib -fm=vgmtest.mah $(16LIBOBJS) | |
190 | + #====wcl -mc vgmtest.$(OBJ) $(VGMSNDOBJ) -fm=vgmtest.mah | |
191 | 191 | |
192 | 192 | |
193 | 193 | # |
@@ -434,8 +434,8 @@ clean: .symbolic | ||
434 | 434 | # @$(REMOVECOMMAND) *.smp |
435 | 435 | @$(REMOVECOMMAND) *.SMP |
436 | 436 | @$(REMOVECOMMAND) *.hed |
437 | - @$(REMOVECOMMAND) *.MAP | |
438 | - @$(REMOVECOMMAND) *.map | |
437 | + @$(REMOVECOMMAND) *.MAH | |
438 | + @$(REMOVECOMMAND) *.mah | |
439 | 439 | @$(REMOVECOMMAND) *.err |
440 | 440 | #@cd $(DOSLIB) |
441 | 441 | #@./buildall.sh clean |