Changeset 7ecfb7b in buchla-68k for ram/etioas.c


Ignore:
Timestamp:
07/14/2017 09:11:47 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
aa021e2
Parents:
4810254
Message:

Unused variables and parameters.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ram/etioas.c

    r4810254 r7ecfb7b  
    2222int16_t et_ioas(int16_t n)
    2323{
     24        (void)n;
     25
    2426        sprintf(ebuf, "%02.2d", curasg);
    2527        ebflag = TRUE;
     
    3941        register int16_t ival;
    4042        register struct s_entry *ep;
     43
     44        (void)n;
    4145
    4246        ebuf[2] = '\0';
     
    8185int16_t rd_ioas(int16_t n)
    8286{
     87        (void)n;
     88
    8389        sprintf(dspbuf, "%02.2d", curasg);
    8490
     
    99105{
    100106        register int16_t ec;
     107
     108        (void)n;
    101109
    102110        ec = stccol - cfetp->flcol;
     
    125133int16_t et_tune(int16_t n)
    126134{
     135        (void)n;
     136
    127137        ebuf[0] = '0' + curtun;
    128138        ebuf[1] = '\0';
     
    141151        register int16_t ival;
    142152        register struct s_entry *ep;
     153
     154        (void)n;
    143155
    144156        ebuf[1] = '\0';
     
    177189int16_t rd_tune(int16_t n)
    178190{
     191        (void)n;
     192
    179193        if (v_regs[5] & 0x0180)
    180194                vbank(0);
     
    193207int16_t nd_tune(int16_t n, int16_t k)
    194208{
    195         register int16_t ec;
     209        (void)n;
    196210
    197211        ebuf[0]  = k + '0';
     
    219233int16_t et_tmpo(int16_t n)
    220234{
     235        (void)n;
     236
    221237        sprintf(ebuf, "%03.3d", tmpoval);
    222238        ebflag = TRUE;
     
    235251        register int16_t ival;
    236252        register struct s_entry *ep;
     253
     254        (void)n;
    237255
    238256        ebuf[3] = '\0';
     
    277295int16_t rd_tmpo(int16_t n)
    278296{
     297        (void)n;
     298
    279299        sprintf(dspbuf, "%03.3d", tmpoval);
    280300
     
    296316{
    297317        register int16_t ec;
     318
     319        (void)n;
    298320
    299321        ec = stccol - cfetp->flcol;
     
    325347        register int16_t th, tl;
    326348        register int32_t tt, sc, sf;
     349
     350        (void)n;
    327351
    328352        sc = 1000L;
     
    349373        register uint16_t tmpval;
    350374        register struct s_entry *ep;
     375
     376        (void)n;
    351377
    352378        ebuf[2] = '.';                  /* add implied decimal point */
     
    403429        register int32_t tt, sc, sf;
    404430
     431        (void)n;
     432
    405433        sc = 1000L;
    406434        sf = 100L;
     
    428456        register int16_t ec;
    429457
     458        (void)n;
     459
    430460        ec = stccol - cfetp->flcol;     /* setup edit buffer column */
    431461
Note: See TracChangeset for help on using the changeset viewer.