- Timestamp:
- 07/09/2017 11:09:17 PM (7 years ago)
- Branches:
- master
- Children:
- f7428b1
- Parents:
- 411371e
- Location:
- ram
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
ram/asgdsp.c
r411371e rc3aee8a 171 171 */ 172 172 173 int16_t asgkbtp[AK_WIDTH] = { /* keyboard icon top lines */173 uint16_t asgkbtp[AK_WIDTH] = { /* keyboard icon top lines */ 174 174 175 175 AKW_7, AKW_C, AKW_1, AKW_F, … … 212 212 */ 213 213 214 int16_t asgkbbt[AK_WIDTH] = { /* keyboard icon bottom lines */214 uint16_t asgkbbt[AK_WIDTH] = { /* keyboard icon bottom lines */ 215 215 216 216 AKW_7, AKW_F, AKW_7, AKW_F, -
ram/gcurpos.c
r411371e rc3aee8a 50 50 */ 51 51 52 static int16_t ar_ule[] = { /* upper left even pixel arrow */52 static uint16_t ar_ule[] = { /* upper left even pixel arrow */ 53 53 54 54 AW_F, AW_0, AW_0, AW_0, /* 0 */ … … 70 70 }; 71 71 72 static int16_t ar_ulo[] = { /* upper left odd pixel arrow */72 static uint16_t ar_ulo[] = { /* upper left odd pixel arrow */ 73 73 74 74 AW_7, AW_8, AW_0, AW_0, /* 0 */ … … 94 94 */ 95 95 96 static int16_t ar_ure[] = { /* upper right even pixel arrow */96 static uint16_t ar_ure[] = { /* upper right even pixel arrow */ 97 97 98 98 AW_0, AW_0, AW_1, AW_E, /* 0 */ … … 114 114 }; 115 115 116 static int16_t ar_uro[] = { /* upper right odd pixel arrow */116 static uint16_t ar_uro[] = { /* upper right odd pixel arrow */ 117 117 118 118 AW_0, AW_0, AW_0, AW_F, /* 0 */ … … 138 138 */ 139 139 140 static int16_t ar_lle[] = { /* lower left even pixel arrow */140 static uint16_t ar_lle[] = { /* lower left even pixel arrow */ 141 141 142 142 AW_0, AW_0, AW_0, AW_0, /* 0 */ … … 158 158 }; 159 159 160 static int16_t ar_llo[] = { /* lower left odd pixel arrow */160 static uint16_t ar_llo[] = { /* lower left odd pixel arrow */ 161 161 162 162 AW_0, AW_0, AW_0, AW_0, /* 0 */ … … 182 182 */ 183 183 184 static int16_t ar_lre[] = { /* lower right even pixel arrow */184 static uint16_t ar_lre[] = { /* lower right even pixel arrow */ 185 185 186 186 AW_0, AW_0, AW_0, AW_0, /* 0 */ … … 202 202 }; 203 203 204 static int16_t ar_lro[] = { /* lower right odd pixel arrow */204 static uint16_t ar_lro[] = { /* lower right odd pixel arrow */ 205 205 206 206 AW_0, AW_0, AW_0, AW_0, /* 0 */ -
ram/im700.c
r411371e rc3aee8a 521 521 */ 522 522 523 int16_t tmultab[] = { /* time multiplier table - indexed by voltage */523 uint16_t tmultab[] = { /* time multiplier table - indexed by voltage */ 524 524 525 525 0xFFFF, 0xFAFA, 0xF627, 0xF182, 0xED09, /* 0 */ -
ram/lcdlbls.c
r411371e rc3aee8a 214 214 }; 215 215 216 int16_t vmasks[16] = { /* variable resolution masks */216 uint16_t vmasks[16] = { /* variable resolution masks */ 217 217 218 218 0x8000, 0xC000, 0xE000, 0xF000, -
ram/msl.c
r411371e rc3aee8a 159 159 extern int16_t simled[]; 160 160 extern int16_t swfifo[NSWFIFO]; 161 extern int16_t tmultab[];161 extern uint16_t tmultab[]; 162 162 extern int16_t vce2trg[]; 163 163 extern int16_t veltab[]; -
ram/showcfg.c
r411371e rc3aee8a 180 180 */ 181 181 182 int16_t pat[MAXPAT][16] = { /* configuration pattern elements */182 uint16_t pat[MAXPAT][16] = { /* configuration pattern elements */ 183 183 184 184 {0x0000, 0x0000, 0x0000, 0x0000, /* 1 */ -
ram/ucslice.c
r411371e rc3aee8a 36 36 extern int16_t nttab2[]; /* gdsel code transition table - bak */ 37 37 38 extern int16_tpxtbl[][4]; /* pixel mask table - notes */39 extern int16_tepxtbl[][16]; /* pixel mask table - events */38 extern uint16_t pxtbl[][4]; /* pixel mask table - notes */ 39 extern uint16_t epxtbl[][16]; /* pixel mask table - events */ 40 40 41 41 extern struct gdsel *gdfsep; /* gdsel freechain pointer */ -
ram/uslice.c
r411371e rc3aee8a 111 111 */ 112 112 113 int16_t pxtbl[][4] = { /* pixel mask table for notes */113 uint16_t pxtbl[][4] = { /* pixel mask table for notes */ 114 114 115 115 { 0x0000, 0x0000, 0x0000, 0 }, /* 0 */ … … 122 122 }; 123 123 124 int16_t epxtbl[][16] = { /* pixel mask table for events */124 uint16_t epxtbl[][16] = { /* pixel mask table for events */ 125 125 126 126 { 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, /* 0 */
Note:
See TracChangeset
for help on using the changeset viewer.