- Timestamp:
- 11/15/2017 06:13:13 PM (7 years ago)
- Branches:
- master
- Children:
- 72741f4
- Parents:
- 2ff1367
- Location:
- ram
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
ram/barbadj.c
r2ff1367 r7c5def4 159 159 160 160 while (barpos++ LE newbar) /* write new dots */ 161 LCD_WD = (uint8_t)bardot;161 LCD_WD = bardot; 162 162 163 163 while (barpos++ < BTop) /* erase old dots */ -
ram/im700.c
r2ff1367 r7c5def4 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, 2 *NCTRLS); /* clear MIDI controller values */599 memsetw(mctlval, 0, NCTRLS); /* clear MIDI controller values */ 600 600 601 601 memsetw(grpmode, 0, 12); /* set all groups to PLAY */ -
ram/instdsp.c
r2ff1367 r7c5def4 431 431 */ 432 432 433 void pltws( uint16_t ws[], int16_t pen)433 void pltws(int16_t ws[], int16_t pen) 434 434 { 435 435 register int16_t i, x, y; … … 438 438 439 439 x = 382 + (i >> 1); 440 y = 348 - (int16_t)(( ws[i] ^ 0x8000) / 676);440 y = 348 - (int16_t)(((uint16_t)ws[i] ^ 0x8000) / 676); 441 441 442 442 idpoint(x, y, pen); -
ram/instdsp.x
r2ff1367 r7c5def4 45 45 extern int16_t irand(int16_t range); 46 46 extern void oscdsp(int16_t row, int16_t val, int16_t n, int8_t *lbl, int16_t frq); 47 extern void pltws( uint16_t ws[], int16_t pen);47 extern void pltws(int16_t ws[], int16_t pen); 48 48 extern void reshowi(void); 49 49 extern int16_t xgetran(int16_t mlt); -
ram/showcfg.c
r2ff1367 r7c5def4 368 368 void dispws(int16_t ws) 369 369 { 370 register uint16_t *wsp;370 register int16_t *wsp; 371 371 register int16_t i, x, y; 372 372 int8_t buf[64]; … … 385 385 386 386 x = LftEdge + (i >> 1); 387 y = BotEdge - (int16_t)(( wsp[i] ^ 0x8000) / 676);387 y = BotEdge - (int16_t)(((uint16_t)wsp[i] ^ 0x8000) / 676); 388 388 389 389 idpoint(x, y, WSBFC); -
ram/tundsp.c
r2ff1367 r7c5def4 340 340 bfs[0] = (int8_t)(bfs[0] + '0'); 341 341 bfs[1] = (int8_t)(bfs[1] + 'A'); 342 bfs[2] = (int8_t)(bfs[2] + sfdsp[bfs[2] - 7]);342 bfs[2] = sfdsp[bfs[2] - 7]; 343 343 bfs[3] = (int8_t)(bfs[3] + '0'); 344 344 bfs[4] = (int8_t)(bfs[4] + '0');
Note:
See TracChangeset
for help on using the changeset viewer.