Changeset 0580615 in buchla-68k for vlib/glcinit.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
  • vlib/glcinit.c

    r46d8069 r0580615  
    8989*/
    9090
    91 GLCdisp(dsp, crs, blk1, blk2, blk3)
    92 short dsp, crs, blk1, blk2, blk3;
     91void GLCdisp(short dsp, short crs, short blk1, short blk2, short blk3)
    9392{
    9493        register short val;
     
    111110*/
    112111
    113 GLCcurs(crs)
    114 short crs;
     112void GLCcurs(short crs)
    115113{
    116114        lcdctl2 = (crs & 3) | (lcdctl2 & ~3);
     
    131129*/
    132130
    133 GLCinit()
     131void GLCinit(void)
    134132{
    135133        register int    i;
     
    207205*/
    208206
    209 unsigned
    210 GLCcrc(row, col)
    211 unsigned row, col;
     207unsigned GLCcrc(unsigned row, unsigned col)
    212208{
    213209        unsigned curad;
     
    239235*/
    240236
    241 unsigned
    242 GLCcxy(x, y)
    243 register unsigned x, y;
     237unsigned GLCcxy(unsigned x, unsigned y)
    244238{
    245239        register unsigned curad, xby6;
     
    283277*/
    284278
    285 GLCwrts(s)
    286 register char *s;
     279void GLCwrts(char *s)
    287280{
    288281        LCD_WC = G_CRSMRT;      /* set cursor motion =  right */
     
    311304*/
    312305
    313 GLCtext(row, col, s)
    314 register unsigned row, col;
    315 register char *s;
     306void GLCtext(unsigned row, unsigned col, char *s)
    316307{
    317308        register unsigned curad;
Note: See TracChangeset for help on using the changeset viewer.