Changeset 7258c6a in buchla-68k for vlib/vmput.c


Ignore:
Timestamp:
07/09/2017 04:45:34 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
8618599
Parents:
0292fbb
Message:

Use standard integer types.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vlib/vmput.c

    r0292fbb r7258c6a  
    1919*/
    2020
    21 typedef unsigned int    uint;
    22 
    23 extern  void    vputc(unsigned *sbase, unsigned row, unsigned col, unsigned c, unsigned attrib);
     21extern  void    vputc(uint16_t *sbase, uint16_t row, uint16_t col, uint16_t c, uint16_t attrib);
    2422
    2523/*
     
    3028*/
    3129
    32 void vmput(uint *sbase, uint row, uint col, uint ma, char *ms[])
     30void vmput(uint16_t *sbase, uint16_t row, uint16_t col, uint16_t ma, int8_t *ms[])
    3331{
    34         register uint c, tc, tr;
    35         char *cp;
     32        register uint16_t c, tc, tr;
     33        int8_t *cp;
    3634
    3735        tr = row;
     
    5856*/
    5957
    60 void vmputa(uint *sbase, uint row, uint col, uint *ma[], char *ms[])
     58void vmputa(uint16_t *sbase, uint16_t row, uint16_t col, uint16_t *ma[], int8_t *ms[])
    6159{
    62         register uint c, tc, tr;
    63         uint *tm;
    64         char *cp;
     60        register uint16_t c, tc, tr;
     61        uint16_t *tm;
     62        int8_t *cp;
    6563
    6664        tr = row;
Note: See TracChangeset for help on using the changeset viewer.