Changeset f852615 in buchla-68k for ram


Ignore:
Timestamp:
11/15/2017 09:02:30 PM (6 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
e68b406
Parents:
eee74cd
Message:

Fixed no-op delays.

Location:
ram
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • ram/etadyn.c

    reee74cd rf852615  
    4141        uint16_t fpmant, fpexp;
    4242        uint16_t oldsr;
    43         int16_t nop;
     43        volatile int16_t nop = 0;
    4444
    4545        grpdyn[grp] = dyn;
  • ram/etloc.c

    reee74cd rf852615  
    3535        uint16_t fpmant, fpexp;
    3636        uint16_t oldsr;
    37         int16_t nop;
     37        volatile int16_t nop = 0;
    3838
    3939        grploc[grp] = loc;
  • ram/lcdlbls.c

    reee74cd rf852615  
    16331633        int16_t val, oldi;
    16341634        uint16_t mult;
    1635         int16_t nop;
     1635        volatile int16_t nop = 0;
    16361636
    16371637        lastart[par] = ival;
     
    18191819        volatile uint16_t *fpu;
    18201820        int32_t trval, trmax;
    1821         int16_t nop;
     1821        volatile int16_t nop = 0;
    18221822
    18231823        trmax = PCHMAX;
  • ram/sendval.c

    reee74cd rf852615  
    1919        int16_t oldi, val;
    2020        int32_t ltmp;
    21         int16_t nop;
     21        volatile int16_t nop = 0;
    2222
    2323        fpu = io_fpu + FPU_OFNC + (voice << 8) + (par << 4);
     
    8787        uint16_t fpexp, fpmant, fptime;
    8888        int16_t oldi, i;
    89         int16_t nop, olds;
     89        volatile int16_t nop = 0;
     90        int16_t olds;
    9091
    9192        if (stat) {
Note: See TracChangeset for help on using the changeset viewer.