Changeset d18a473 in buchla-68k for lib700/bitrev.c


Ignore:
Timestamp:
07/15/2017 11:46:04 AM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
7d0d347
Parents:
e102943
Message:

No more warnings in lib700.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lib700/bitrev.c

    re102943 rd18a473  
    88#include "ram.h"
    99
    10 static int16_t bitmask[] = {
     10static uint16_t bitmask[] = {
    1111
    1212        0x0001, 0x0002, 0x0004, 0x0008,
     
    2424*/
    2525
    26 int16_t bitrev(int16_t bitsin, int16_t nbits)
     26uint16_t bitrev(uint16_t bitsin, int16_t nbits)
    2727{
    28         int16_t m, n;
     28        uint16_t n;
     29        int16_t m;
    2930
    3031        n = 0;
Note: See TracChangeset for help on using the changeset viewer.