Changeset ea9a162 in buchla-68k for ram/im700.c


Ignore:
Timestamp:
11/12/2017 10:44:55 PM (6 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
2ff1367
Parents:
99fed2e
Message:

Fixed the rest.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ram/im700.c

    r99fed2e rea9a162  
    716716
    717717        for (i = 0; i < 12; i++)        /* setup default values for gtctab */
    718                 gtctab[i] = ((i+3) << 12) | ((i+3) << 8) | ((i+3) << 4) | (i+3);
     718                gtctab[i] = (uint16_t)
     719                        (((i+3) << 12) | ((i+3) << 8) | ((i+3) << 4) | (i+3));
    719720
    720721        editsw  = FALSE;                /* setup edit switch state */
Note: See TracChangeset for help on using the changeset viewer.