- Timestamp:
- 11/12/2017 06:14:21 PM (7 years ago)
- Branches:
- master
- Children:
- fa50076
- Parents:
- 3f2d518
- Location:
- ram
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
ram/im700.c
r3f2d518 rc93e44d 597 597 memset(keystat, 0, 24); /* clear front panel key status */ 598 598 memset(trgtab, 0, NTRIGS); /* clear trigger status table */ 599 memset(mctlval, 0, NCTRLS); /* clear MIDI controller values */599 memset(mctlval, 0, 2 * NCTRLS); /* clear MIDI controller values */ 600 600 601 601 memsetw(grpmode, 0, 12); /* set all groups to PLAY */ -
ram/msm.c
r3f2d518 rc93e44d 277 277 ep->e_time = t_cur; 278 278 ep->e_type = EV_ANVL; 279 ep->e_data1 = 0x0050 | i;279 ep->e_data1 = (int8_t)(0x0050 | i); 280 280 ep->e_dn = (struct s_entry *)((int32_t)mdb1 << 16); 281 281 p_cur = e_ins(ep, ep_adj(p_cur, 0, t_cur))->e_fwd; … … 515 515 prstab[t1] = 0; 516 516 517 stmproc( t1); /* process as a patch stimulus */517 stmproc((uint16_t)t1); /* process as a patch stimulus */ 518 518 519 519 if (editsw) { /* edit mode */ … … 570 570 } 571 571 572 stmproc( 0x8000 |t1); /* process as a patch stimulus */572 stmproc((uint16_t)0x8000 | (uint16_t)t1); /* process as a patch stimulus */ 573 573 } 574 574 -
ram/swinit.c
r3f2d518 rc93e44d 115 115 int8_t loadedf[NLTYPES][8]; /* loaded file names */ 116 116 int8_t masens[3]; /* MIDI port active sensing flags */ 117 int 8_t mctlval[NCTRLS]; /* MIDI controller values */118 int 8_t mdbyte[3]; /* MIDI data byte buffers */117 int16_t mctlval[NCTRLS]; /* MIDI controller values */ 118 int16_t mdbyte[3]; /* MIDI data byte buffers */ 119 119 int8_t mpsust[48]; /* MIDI sustain status, by port and channel */ 120 int 8_t mrstat[3]; /* MIDI running status */120 int16_t mrstat[3]; /* MIDI running status */ 121 121 int8_t scname[N_SCORES][16]; /* Score names */ 122 122 int8_t trgtab[NTRIGS]; /* trigger status */ -
ram/swinit.x
r3f2d518 rc93e44d 90 90 extern int8_t masens[3]; 91 91 extern int16_t mctlnum[4]; 92 extern int 8_t mctlval[NCTRLS];93 extern int 8_t mdbyte[3];92 extern int16_t mctlval[NCTRLS]; 93 extern int16_t mdbyte[3]; 94 94 extern int16_t mpbend[48]; 95 95 extern int8_t mpsust[48]; 96 extern int 8_t mrstat[3];96 extern int16_t mrstat[3]; 97 97 extern int16_t msmstv[3]; 98 98 extern int32_t ndbytes;
Note:
See TracChangeset
for help on using the changeset viewer.