Changeset 0580615 in buchla-68k for lib700/micons.c


Ignore:
Timestamp:
07/08/2017 02:42:31 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
342a56f
Parents:
46d8069
Message:

Point of no return.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lib700/micons.c

    r46d8069 r0580615  
    3535*/
    3636
    37 short
    38 micons(wi)
    39 short wi;
     37short micons(short wi)
    4038{
    4139        return((short)( ((wi << 8) & 0xFF00) | ((wi >> 8) & 0x00FF) ) );
     
    4846*/
    4947
    50 int
    51 miconi(wi)
    52 int wi;
     48int miconi(int wi)
    5349{
    5450        if (sizeof (int) == 4)
     
    6561*/
    6662
    67 long
    68 miconl(wi)
    69 long wi;
     63long miconl(long wi)
    7064{
    7165        return( ((wi << 24) & 0xFF000000L) | ((wi << 8) & 0x00FF0000L) |
Note: See TracChangeset for help on using the changeset viewer.