3 * Adlib OPL2/OPL3 FM synthesizer chipset test program.
4 * Play MIDI file using the OPLx synthesizer (well, poorly anyway)
5 * (C) 2010-2012 Jonathan Campbell.
6 * Hackipedia DOS library.
8 * This code is licensed under the LGPL.
9 * <insert LGPL legal text here>
11 * Compiles for intended target environments:
12 * - MS-DOS [pure DOS mode, or Windows or OS/2 DOS Box]
15 #include "src/lib/midi.h"
17 static unsigned int midi_trk_count=0;
19 /* MIDI params. Nobody ever said it was a straightforward standard!
20 * NTS: These are for reading reference. Internally we convert everything to 100Hz time base. */
21 static unsigned int ticks_per_quarter_note=0; /* "Ticks per beat" */
23 #if TARGET_MSDOS == 16 && (defined(__LARGE__) || defined(__COMPACT__))
24 static inline unsigned long farptr2phys(unsigned char far *p) { /* take 16:16 pointer convert to physical memory address */
25 return ((unsigned long)FP_SEG(p) << 4UL) + ((unsigned long)FP_OFF(p));
29 static inline unsigned char midi_trk_read(struct midi_track *t) {
32 /* NTS: 16-bit large/compact builds MUST compare pointers as unsigned long to compare FAR pointers correctly! */
33 if (t->read == NULL || (unsigned long)t->read >= (unsigned long)t->fence) {
39 #if TARGET_MSDOS == 16 && (defined(__LARGE__) || defined(__COMPACT__))
40 if (FP_OFF(t->read) >= 0xF) /* 16:16 far pointer aware (NTS: Programs reassigning this pointer MUST normalize the FAR pointer) */
41 t->read = MK_FP(FP_SEG(t->read)+0x1,0);
50 void midi_trk_end(struct midi_track *t) {
55 void midi_trk_skip(struct midi_track *t,unsigned long len) {
58 /* NTS: 16-bit large/compact builds MUST compare pointers as unsigned long to compare FAR pointers correctly! */
59 if (t->read == NULL || (unsigned long)t->read >= (unsigned long)t->fence)
66 #if TARGET_MSDOS == 16 && (defined(__LARGE__) || defined(__COMPACT__))
70 tt = farptr2phys(t->read);
71 rem = farptr2phys(t->fence) - tt;
72 if (rem > len) rem = len;
74 t->read = MK_FP(tt>>4,tt&0xF);
77 rem = (unsigned long)(t->fence - t->read);
78 if (len > rem) len = rem;
83 static const uint32_t midikeys_freqs[0x80] = {
84 0x00082d01, /* key 0 = 8.17579891564371Hz */
85 0x0008a976, /* key 1 = 8.66195721802725Hz */
86 0x00092d51, /* key 2 = 9.17702399741899Hz */
87 0x0009b904, /* key 3 = 9.72271824131503Hz */
88 0x000a4d05, /* key 4 = 10.3008611535272Hz */
89 0x000ae9d3, /* key 5 = 10.9133822322814Hz */
90 0x000b8ff4, /* key 6 = 11.5623257097386Hz */
91 0x000c3ff6, /* key 7 = 12.2498573744297Hz */
92 0x000cfa70, /* key 8 = 12.9782717993733Hz */
93 0x000dc000, /* key 9 = 13.75Hz */
94 0x000e914f, /* key 10 = 14.5676175474403Hz */
95 0x000f6f11, /* key 11 = 15.4338531642539Hz */
96 0x00105a02, /* key 12 = 16.3515978312874Hz */
97 0x001152ec, /* key 13 = 17.3239144360545Hz */
98 0x00125aa2, /* key 14 = 18.354047994838Hz */
99 0x00137208, /* key 15 = 19.4454364826301Hz */
100 0x00149a0a, /* key 16 = 20.6017223070544Hz */
101 0x0015d3a6, /* key 17 = 21.8267644645627Hz */
102 0x00171fe9, /* key 18 = 23.1246514194771Hz */
103 0x00187fed, /* key 19 = 24.4997147488593Hz */
104 0x0019f4e0, /* key 20 = 25.9565435987466Hz */
105 0x001b8000, /* key 21 = 27.5Hz */
106 0x001d229e, /* key 22 = 29.1352350948806Hz */
107 0x001ede22, /* key 23 = 30.8677063285078Hz */
108 0x0020b404, /* key 24 = 32.7031956625748Hz */
109 0x0022a5d8, /* key 25 = 34.647828872109Hz */
110 0x0024b545, /* key 26 = 36.7080959896759Hz */
111 0x0026e410, /* key 27 = 38.8908729652601Hz */
112 0x00293414, /* key 28 = 41.2034446141087Hz */
113 0x002ba74d, /* key 29 = 43.6535289291255Hz */
114 0x002e3fd2, /* key 30 = 46.2493028389543Hz */
115 0x0030ffda, /* key 31 = 48.9994294977187Hz */
116 0x0033e9c0, /* key 32 = 51.9130871974931Hz */
117 0x00370000, /* key 33 = 55Hz */
118 0x003a453d, /* key 34 = 58.2704701897612Hz */
119 0x003dbc44, /* key 35 = 61.7354126570155Hz */
120 0x00416809, /* key 36 = 65.4063913251497Hz */
121 0x00454bb0, /* key 37 = 69.295657744218Hz */
122 0x00496a8b, /* key 38 = 73.4161919793519Hz */
123 0x004dc820, /* key 39 = 77.7817459305202Hz */
124 0x00526829, /* key 40 = 82.4068892282175Hz */
125 0x00574e9b, /* key 41 = 87.307057858251Hz */
126 0x005c7fa4, /* key 42 = 92.4986056779086Hz */
127 0x0061ffb5, /* key 43 = 97.9988589954373Hz */
128 0x0067d380, /* key 44 = 103.826174394986Hz */
129 0x006e0000, /* key 45 = 110Hz */
130 0x00748a7b, /* key 46 = 116.540940379522Hz */
131 0x007b7888, /* key 47 = 123.470825314031Hz */
132 0x0082d012, /* key 48 = 130.812782650299Hz */
133 0x008a9760, /* key 49 = 138.591315488436Hz */
134 0x0092d517, /* key 50 = 146.832383958704Hz */
135 0x009b9041, /* key 51 = 155.56349186104Hz */
136 0x00a4d053, /* key 52 = 164.813778456435Hz */
137 0x00ae9d36, /* key 53 = 174.614115716502Hz */
138 0x00b8ff49, /* key 54 = 184.997211355817Hz */
139 0x00c3ff6a, /* key 55 = 195.997717990875Hz */
140 0x00cfa700, /* key 56 = 207.652348789973Hz */
141 0x00dc0000, /* key 57 = 220Hz */
142 0x00e914f6, /* key 58 = 233.081880759045Hz */
143 0x00f6f110, /* key 59 = 246.941650628062Hz */
144 0x0105a025, /* key 60 = 261.625565300599Hz */
145 0x01152ec0, /* key 61 = 277.182630976872Hz */
146 0x0125aa2e, /* key 62 = 293.664767917408Hz */
147 0x01372082, /* key 63 = 311.126983722081Hz */
148 0x0149a0a7, /* key 64 = 329.62755691287Hz */
149 0x015d3a6d, /* key 65 = 349.228231433004Hz */
150 0x0171fe92, /* key 66 = 369.994422711634Hz */
151 0x0187fed4, /* key 67 = 391.995435981749Hz */
152 0x019f4e00, /* key 68 = 415.304697579945Hz */
153 0x01b80000, /* key 69 = 440Hz */
154 0x01d229ec, /* key 70 = 466.16376151809Hz */
155 0x01ede220, /* key 71 = 493.883301256124Hz */
156 0x020b404a, /* key 72 = 523.251130601197Hz */
157 0x022a5d81, /* key 73 = 554.365261953744Hz */
158 0x024b545c, /* key 74 = 587.329535834815Hz */
159 0x026e4104, /* key 75 = 622.253967444162Hz */
160 0x0293414f, /* key 76 = 659.25511382574Hz */
161 0x02ba74da, /* key 77 = 698.456462866008Hz */
162 0x02e3fd24, /* key 78 = 739.988845423269Hz */
163 0x030ffda9, /* key 79 = 783.990871963499Hz */
164 0x033e9c01, /* key 80 = 830.60939515989Hz */
165 0x03700000, /* key 81 = 880Hz */
166 0x03a453d8, /* key 82 = 932.32752303618Hz */
167 0x03dbc440, /* key 83 = 987.766602512248Hz */
168 0x04168094, /* key 84 = 1046.50226120239Hz */
169 0x0454bb03, /* key 85 = 1108.73052390749Hz */
170 0x0496a8b8, /* key 86 = 1174.65907166963Hz */
171 0x04dc8208, /* key 87 = 1244.50793488832Hz */
172 0x0526829e, /* key 88 = 1318.51022765148Hz */
173 0x0574e9b5, /* key 89 = 1396.91292573202Hz */
174 0x05c7fa49, /* key 90 = 1479.97769084654Hz */
175 0x061ffb53, /* key 91 = 1567.981743927Hz */
176 0x067d3802, /* key 92 = 1661.21879031978Hz */
177 0x06e00000, /* key 93 = 1760Hz */
178 0x0748a7b1, /* key 94 = 1864.65504607236Hz */
179 0x07b78880, /* key 95 = 1975.5332050245Hz */
180 0x082d0128, /* key 96 = 2093.00452240479Hz */
181 0x08a97607, /* key 97 = 2217.46104781498Hz */
182 0x092d5171, /* key 98 = 2349.31814333926Hz */
183 0x09b90410, /* key 99 = 2489.01586977665Hz */
184 0x0a4d053c, /* key 100 = 2637.02045530296Hz */
185 0x0ae9d36b, /* key 101 = 2793.82585146403Hz */
186 0x0b8ff493, /* key 102 = 2959.95538169308Hz */
187 0x0c3ff6a7, /* key 103 = 3135.96348785399Hz */
188 0x0cfa7005, /* key 104 = 3322.43758063956Hz */
189 0x0dc00000, /* key 105 = 3520Hz */
190 0x0e914f62, /* key 106 = 3729.31009214472Hz */
191 0x0f6f1100, /* key 107 = 3951.06641004899Hz */
192 0x105a0250, /* key 108 = 4186.00904480958Hz */
193 0x1152ec0e, /* key 109 = 4434.92209562995Hz */
194 0x125aa2e3, /* key 110 = 4698.63628667852Hz */
195 0x13720820, /* key 111 = 4978.03173955329Hz */
196 0x149a0a79, /* key 112 = 5274.04091060592Hz */
197 0x15d3a6d6, /* key 113 = 5587.65170292806Hz */
198 0x171fe927, /* key 114 = 5919.91076338615Hz */
199 0x187fed4e, /* key 115 = 6271.92697570799Hz */
200 0x19f4e00a, /* key 116 = 6644.87516127912Hz */
201 0x1b800000, /* key 117 = 7040Hz */
202 0x1d229ec4, /* key 118 = 7458.62018428944Hz */
203 0x1ede2200, /* key 119 = 7902.13282009799Hz */
204 0x20b404a1, /* key 120 = 8372.01808961916Hz */
205 0x22a5d81c, /* key 121 = 8869.84419125991Hz */
206 0x24b545c7, /* key 122 = 9397.27257335704Hz */
207 0x26e41040, /* key 123 = 9956.06347910659Hz */
208 0x293414f2, /* key 124 = 10548.0818212118Hz */
209 0x2ba74dac, /* key 125 = 11175.3034058561Hz */
210 0x2e3fd24f, /* key 126 = 11839.8215267723Hz */
211 0x30ffda9c /* key 127 = 12543.853951416Hz */
214 static uint32_t midi_note_freq(struct midi_channel *ch,unsigned char key) {
215 return midikeys_freqs[key&0x7F];
218 static struct midi_note *get_fm_note(struct midi_track *t,struct midi_channel *ch,unsigned char key,unsigned char do_alloc) {
219 unsigned int tch = (unsigned int)(t - midi_trk); /* pointer math */
220 unsigned int ach = (unsigned int)(ch - midi_ch); /* pointer math */
221 unsigned int i,freen=~0;
223 for (i=0;i < ADLIB_FM_VOICES;i++) {
224 if (midi_notes[i].busy) {
225 if (midi_notes[i].note_channel == ach && midi_notes[i].note_track == tch && midi_notes[i].note_number == key)
226 return &midi_notes[i];
229 if (freen == ~0) freen = i;
233 if (do_alloc && freen != ~0) return &midi_notes[freen];
237 static void drop_fm_note(struct midi_channel *ch,unsigned char key) {
238 unsigned int ach = (unsigned int)(ch - midi_ch); /* pointer math */
241 for (i=0;i < ADLIB_FM_VOICES;i++) {
242 if (midi_notes[i].busy && midi_notes[i].note_channel == ach) {
243 midi_notes[i].busy = 0;
249 static inline void on_key_aftertouch(struct midi_track *t,struct midi_channel *ch,unsigned char key,unsigned char vel) {
250 struct midi_note *note = get_fm_note(t,ch,key,/*do_alloc*/0);
251 uint32_t freq = midi_note_freq(ch,key);
254 if (note == NULL) return;
257 note->note_number = key;
258 note->note_velocity = vel;
259 note->note_track = (unsigned int)(t - midi_trk);
260 note->note_channel = (unsigned int)(ch - midi_ch);
261 ach = (unsigned int)(note - midi_notes); /* which FM channel? */
262 adlib_freq_to_fm_op(&adlib_fm[ach].mod,(double)freq / 65536);
263 adlib_fm[ach].mod.attack_rate = vel >> 3; /* 0-127 to 0-15 */
264 adlib_fm[ach].mod.sustain_level = vel >> 3;
265 adlib_fm[ach].mod.key_on = 1;
266 adlib_update_groupA0(ach,&adlib_fm[ach]);
269 static inline void on_key_on(struct midi_track *t,struct midi_channel *ch,unsigned char key,unsigned char vel) {
270 struct midi_note *note = get_fm_note(t,ch,key,/*do_alloc*/1);
271 uint32_t freq = midi_note_freq(ch,key);
274 /* HACK: Ignore percussion */
275 if ((ch->program >= 8 && ch->program <= 15)/*Chromatic percussion*/ ||
276 (ch->program >= 112 && ch->program <= 119)/*Percussive*/ ||
277 ch == &midi_ch[9]/*MIDI channel 10 (DAMN YOU 1-BASED COUNTING)*/)
281 /* then we'll have to knock one off to make room */
282 drop_fm_note(ch,key);
283 note = get_fm_note(t,ch,key,1);
284 if (note == NULL) return;
288 note->note_number = key;
289 note->note_velocity = vel;
290 note->note_track = (unsigned int)(t - midi_trk);
291 note->note_channel = (unsigned int)(ch - midi_ch);
292 ach = (unsigned int)(note - midi_notes); /* which FM channel? */
293 adlib_freq_to_fm_op(&adlib_fm[ach].mod,(double)freq / 65536);
294 adlib_fm[ach].mod.attack_rate = vel >> 3; /* 0-127 to 0-15 */
295 adlib_fm[ach].mod.sustain_level = vel >> 3;
296 adlib_fm[ach].mod.key_on = 1;
297 adlib_update_groupA0(ach,&adlib_fm[ach]);
300 static inline void on_key_off(struct midi_track *t,struct midi_channel *ch,unsigned char key,unsigned char vel) {
301 struct midi_note *note = get_fm_note(t,ch,key,/*do_alloc*/0);
302 uint32_t freq = midi_note_freq(ch,key);
305 if (note == NULL) return;
308 ach = (unsigned int)(note - midi_notes); /* which FM channel? */
309 adlib_freq_to_fm_op(&adlib_fm[ach].mod,(double)freq / 65536);
310 adlib_fm[ach].mod.attack_rate = vel >> 3; /* 0-127 to 0-15 */
311 adlib_fm[ach].mod.sustain_level = vel >> 3;
312 adlib_fm[ach].mod.key_on = 0;
313 adlib_update_groupA0(ach,&adlib_fm[ach]);
316 static inline void on_control_change(struct midi_track *t,struct midi_channel *ch,unsigned char num,unsigned char val) {
319 static inline void on_program_change(struct midi_track *t,struct midi_channel *ch,unsigned char inst) {
323 static inline void on_channel_aftertouch(struct midi_track *t,struct midi_channel *ch,unsigned char velocity) {
326 static inline void on_pitch_bend(struct midi_track *t,struct midi_channel *ch,int bend/*-8192 to 8192*/) {
329 unsigned long midi_trk_read_delta(struct midi_track *t) {
330 unsigned long tc = 0;
331 unsigned char c = 0,b;
333 /* NTS: 16-bit large/compact builds MUST compare pointers as unsigned long to compare FAR pointers correctly! */
334 if (t->read == NULL || (unsigned long)t->read >= (unsigned long)t->fence)
338 b = midi_trk_read(t);
339 tc = (tc << 7UL) + (unsigned long)(b&0x7F);
340 if (!(b&0x80)) break;
347 void midi_tick_track(unsigned int i) {
348 struct midi_track *t = midi_trk + i;
349 struct midi_channel *ch;
353 /* NTS: 16-bit large/compact builds MUST compare pointers as unsigned long to compare FAR pointers correctly! */
354 if (t->read == NULL || (unsigned long)t->read >= (unsigned long)t->fence) {
359 t->us_tick_cnt_mtpq += 10000UL * (unsigned long)ticks_per_quarter_note;
360 while (t->us_tick_cnt_mtpq >= t->us_per_quarter_note) {
361 t->us_tick_cnt_mtpq -= t->us_per_quarter_note;
364 while (t->wait == 0) {
365 if ((unsigned long)t->read >= (unsigned long)t->fence) {
370 /* read pointer should be pointing at MIDI event bytes, just after the time delay */
371 b = midi_trk_read(t);
379 if (b != 0x00 && ((b&0xF8) != 0xF0))
380 c = midi_trk_read(t);
383 /* blegh. last status */
388 case 0x8: { /* note off */
389 d = midi_trk_read(t);
390 ch = midi_ch + (b&0xF); /* c=key d=velocity */
391 on_key_off(t,ch,c,d);
393 case 0x9: { /* note on */
394 d = midi_trk_read(t);
395 ch = midi_ch + (b&0xF); /* c=key d=velocity */
396 if (d != 0) on_key_on(t,ch,c,d); /* "A Note On with a velocity of 0 is actually a note off" Bleh, really? */
397 else on_key_off(t,ch,c,d);
399 case 0xA: { /* polyphonic aftertouch */
400 d = midi_trk_read(t);
401 ch = midi_ch + (b&0xF); /* c=key d=velocity */
402 on_key_aftertouch(t,ch,c,d);
404 case 0xB: { /* control change */
405 d = midi_trk_read(t);
406 ch = midi_ch + (b&0xF); /* c=key d=velocity */
407 on_control_change(t,ch,c,d);
409 case 0xC: { /* program change */
410 on_program_change(t,ch,c); /* c=instrument d=not used */
412 case 0xD: { /* channel aftertouch */
413 on_channel_aftertouch(t,ch,c); /* c=velocity d=not used */
415 case 0xE: { /* pitch bend */
416 d = midi_trk_read(t);
417 on_pitch_bend(t,ch,((c&0x7F)|((d&0x7F)<<7))-8192); /* c=LSB d=MSB */
419 case 0xF: { /* event */
421 if (c == 0x7F) { /* c=type d=len */
422 unsigned long len = midi_trk_read_delta(t);
423 // fprintf(stderr,"Type 0x7F len=%lu %p/%p/%p\n",len,t->raw,t->read,t->fence);
426 midi_trk_skip(t,len);
433 d = midi_trk_read(t);
435 if (c == 0x51 && d >= 3) {
437 t->us_per_quarter_note = ((unsigned long)midi_trk_read(t)<<16UL)+
438 ((unsigned long)midi_trk_read(t)<<8UL)+
439 ((unsigned long)midi_trk_read(t)<<0UL);
441 if (1/*TODO: If format 0 or format 1*/) {
442 /* Ugh. Unless format 2, the tempo applies to all tracks */
445 for (j=0;j < midi_trk_count;j++) {
446 if (j != i) midi_trk[j].us_per_quarter_note =
447 t->us_per_quarter_note;
452 // fprintf(stderr,"Type 0x%02x len=%lu %p/%p/%p\n",c,d,t->raw,t->read,t->fence);
458 fprintf(stderr,"t=%u Unknown MIDI f message 0x%02x 0x%02x %p/%p/%p\n",i,b,c,t->raw,t->read,t->fence);
462 unsigned long len = midi_trk_read_delta(t);
463 // fprintf(stderr,"Sysex len=%lu %p/%p/%p\n",len,t->raw,t->read,t->fence);
464 midi_trk_skip(t,len);
469 fprintf(stderr,"t=%u Unknown MIDI message 0x%02x at %p/%p/%p\n",i,b,t->raw,t->read,t->fence);
475 /* and then read the next event */
476 t->wait = midi_trk_read_delta(t);
484 void adlib_shut_up();
485 void midi_reset_tracks();
486 void midi_reset_channels();
493 for (i=0;i < midi_trk_count;i++) {
495 eof += midi_trk[i].eof?1:0;
498 if (eof >= midi_trk_count) {
501 midi_reset_channels();
506 /* WARNING: subroutine call in interrupt handler. make sure you compile with -zu flag for large/compact memory models */
507 void interrupt irq0() {
510 if ((irq0_cnt += irq0_add) >= irq0_max) {
511 irq0_cnt -= irq0_max;
515 p8259_OCW2(0,P8259_OCW2_NON_SPECIFIC_EOI);
519 void adlib_shut_up() {
522 memset(adlib_fm,0,sizeof(adlib_fm));
523 memset(&adlib_reg_bd,0,sizeof(adlib_reg_bd));
524 for (i=0;i < adlib_fm_voices;i++) {
525 struct adlib_fm_operator *f;
526 f = &adlib_fm[i].mod;
527 f->ch_a = f->ch_b = f->ch_c = f->ch_d = 1;
528 f = &adlib_fm[i].car;
529 f->ch_a = f->ch_b = f->ch_c = f->ch_d = 1;
532 for (i=0;i < adlib_fm_voices;i++) {
533 struct adlib_fm_operator *f;
535 midi_notes[i].busy = 0;
536 midi_notes[i].note_channel = 0;
538 f = &adlib_fm[i].mod;
540 f->total_level = 63 - 16;
543 f->sustain_level = 0;
550 f = &adlib_fm[i].car;
552 f->total_level = 63 - 16;
555 f->sustain_level = 0;
566 void midi_reset_track(unsigned int i) {
567 struct midi_track *t;
569 if (i >= MIDI_MAX_TRACKS) return;
573 t->us_tick_cnt_mtpq = 0;
574 t->us_per_quarter_note = (60000000UL / 120UL); /* 120BPM */
575 t->read = midi_trk[i].raw;
576 t->wait = midi_trk_read_delta(t); /* and then the read pointer will point at the MIDI event when wait counts down */
579 void midi_reset_tracks() {
582 for (i=0;i < midi_trk_count;i++)
586 void midi_reset_channels() {
589 for (i=0;i < MIDI_MAX_CHANNELS;i++) {
590 midi_ch[i].program = 0;
594 int load_midi_file(const char *path) {
595 unsigned char tmp[256];
596 unsigned int tracks=0;
597 unsigned int tracki=0;
600 fd = open(path,O_RDONLY|O_BINARY);
602 printf("Failed to load file %s\n",path);
606 ticks_per_quarter_note = 0;
607 while (read(fd,tmp,8) == 8) {
610 sz = ((uint32_t)tmp[4] << (uint32_t)24) |
611 ((uint32_t)tmp[5] << (uint32_t)16) |
612 ((uint32_t)tmp[6] << (uint32_t)8) |
613 ((uint32_t)tmp[7] << (uint32_t)0);
614 if (!memcmp(tmp,"MThd",4)) {
615 unsigned short t,tdiv;
617 if (sz < 6 || sz > 255) {
618 fprintf(stderr,"Invalid MThd size %lu\n",(unsigned long)sz);
621 if (read(fd,tmp,(int)sz) != (int)sz) {
622 fprintf(stderr,"MThd read error\n");
626 /* byte 0-1 = format type (0,1 or 2) */
627 /* byte 2-3 = number of tracks */
628 /* byte 4-5 = time divison */
629 t = tmp[1] | (tmp[0] << 8);
631 fprintf(stderr,"MThd type %u not supported\n",t);
632 goto err; /* we only take type 0 or 1, don't support 2 */
634 tracks = tmp[3] | (tmp[2] << 8);
635 if (tracks > MIDI_MAX_TRACKS) {
636 fprintf(stderr,"MThd too many (%u) tracks\n",tracks);
639 tdiv = tmp[5] | (tmp[4] << 8);
641 fprintf(stderr,"MThd SMPTE time division not supported\n");
642 goto err; /* we do not support the SMPTE form */
645 fprintf(stderr,"MThd time division == 0\n");
648 ticks_per_quarter_note = tdiv;
650 else if (!memcmp(tmp,"MTrk",4)) {
651 if (sz == 0UL) continue;
652 #if TARGET_MSDOS == 16 && (defined(__LARGE__) || defined(__COMPACT__))
653 if (sz > (640UL << 10UL)) goto err; /* 640KB */
654 #elif TARGET_MSDOS == 32
655 if (sz > (1UL << 20UL)) goto err; /* 1MB */
657 if (sz > (60UL << 10UL)) goto err; /* 60KB */
659 if (tracki >= MIDI_MAX_TRACKS) goto err;
660 #if TARGET_MSDOS == 16 && (defined(__LARGE__) || defined(__COMPACT__))
664 /* NTS: _fmalloc() is still limited to 64KB sizes */
665 if (_dos_allocmem((unsigned)((sz+15UL)>>4UL),&segv) != 0) goto err;
666 midi_trk[tracki].raw = MK_FP(segv,0);
669 midi_trk[tracki].raw = malloc(sz);
671 if (midi_trk[tracki].raw == NULL) goto err;
672 midi_trk[tracki].read = midi_trk[tracki].raw;
673 #if TARGET_MSDOS == 16 && (defined(__LARGE__) || defined(__COMPACT__))
675 unsigned char far *p = midi_trk[tracki].raw;
676 unsigned long rem = (unsigned long)sz;
683 cando = 0x10000UL - (unsigned long)FP_OFF(p);
684 if (cando > rem) cando = rem;
685 if (cando > 0xFFFFUL) cando = 0xFFFFUL; /* we're limited to 64KB-1 of reading */
687 if (_dos_read(fd,p,(unsigned)cando,&read) != 0) goto err;
688 if (read != (unsigned)cando) goto err;
691 if ((((unsigned long)FP_OFF(p))+cando) == 0x10000UL)
692 p = MK_FP(FP_SEG(p)+0x1000,0);
694 p += (unsigned)cando;
697 cando = farptr2phys(p);
698 midi_trk[tracki].fence = MK_FP(cando>>4,cando&0xF);
701 midi_trk[tracki].fence = midi_trk[tracki].raw + (unsigned)sz;
702 if (read(fd,midi_trk[tracki].raw,(unsigned)sz) != (int)sz) goto err;
707 fprintf(stderr,"Unknown MIDI chunk %c%c%c%c\n",tmp[0],tmp[1],tmp[2],tmp[3]);
711 if (tracki == 0 || ticks_per_quarter_note == 0) goto err;
712 midi_trk_count = tracki;
714 fprintf(stderr,"Ticks per quarter note: %u\n",ticks_per_quarter_note);