Changeset 6262b5c in buchla-68k for vlib


Ignore:
Timestamp:
07/10/2017 12:02:05 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
39a696b
Parents:
5fa506d
Message:

Added include files for global functions and variables.

Location:
vlib
Files:
16 added
16 edited

Legend:

Unmodified
Added
Removed
  • vlib/cg2.c

    r5fa506d r6262b5c  
     1#include "all.h"
    12
    23/* Character generator table -- 12V by 8H */
  • vlib/cg3.c

    r5fa506d r6262b5c  
    22/* 14V by 8H */
    33/* Generated:  1989-11-16  15:40:14 */
     4
     5#include "all.h"
    46
    57/* int16_t      cg_rows = 14; */
  • vlib/glcinit.c

    r5fa506d r6262b5c  
    5959*/
    6060
    61 #include "stddefs.h"
    62 #include "hwdefs.h"
    63 #include "glcdefs.h"
     61#include "all.h"
    6462
    6563uint16_t        lcdbase;        /* LCD graphics base address */
     
    328326}
    329327
     328
  • vlib/lseg.c

    r5fa506d r6262b5c  
    77*/
    88
    9 void    (*point)(int16_t x, int16_t y, int16_t pen);
     9#include "all.h"
     10
     11void   (*point)(int16_t x, int16_t y, int16_t pen);
    1012
    1113#define ABS(x)  ((x) < 0 ? (-(x)) : (x))
  • vlib/vbfill4.c

    r5fa506d r6262b5c  
    88*/
    99
     10#include "all.h"
     11
    1012static int16_t  fm[] = {        /* fill masks */
    1113
  • vlib/vclrs.c

    r5fa506d r6262b5c  
    1616*/
    1717
    18 extern  void    vputc(uint16_t *sbase, uint16_t row, uint16_t col, uint16_t c, uint16_t attrib);
     18#include "all.h"
    1919
    2020/*
  • vlib/vhinit.c

    r5fa506d r6262b5c  
    1616#define FASTCHIP        1       /* non-zero if it's the fast VSDD chip */
    1717
    18 #include "hwdefs.h"
    19 #include "vsdd.h"
    20 #include "memory.h"
    21 
    22 #include "vsddsw.h"
     18#include "all.h"
    2319
    2420#define VREG(h,v)       ((h<<10)|v)
     
    10096        memcpyw(v_cgtab, cgtable, 256 * cg_rows);
    10197}
     98
  • vlib/vmput.c

    r5fa506d r6262b5c  
    1919*/
    2020
    21 extern  void    vputc(uint16_t *sbase, uint16_t row, uint16_t col, uint16_t c, uint16_t attrib);
     21#include "all.h"
    2222
    2323/*
  • vlib/vobjfns.c

    r5fa506d r6262b5c  
    5353*/
    5454
    55 #include "biosdefs.h"
    56 #include "graphdef.h"
    57 #include "hwdefs.h"
    58 #include "stddefs.h"
    59 #include "vsdd.h"
    60 #include "vsddvars.h"
     55#include "all.h"
    6156
    6257extern  void    vbank(uint16_t b);
     
    269264        }
    270265}
     266
  • vlib/vputs.c

    r5fa506d r6262b5c  
    1212*/
    1313
    14 #include <stddefs.h>
     14#include "all.h"
    1515
    1616extern  void    vputc(uint16_t *sbase, uint16_t row, uint16_t col, uint16_t c, uint16_t attrib);
     
    7272        }
    7373}
     74
  • vlib/vputsv.c

    r5fa506d r6262b5c  
    1212*/
    1313
    14 #include "stddefs.h"
     14#include "all.h"
    1515
    1616extern  void    vputcv(uint16_t *adr, uint16_t row, uint16_t col, uint8_t chr, uint16_t atr, uint16_t cols);
     
    7373        }
    7474}
     75
  • vlib/vsetpal.c

    r5fa506d r6262b5c  
    55   =============================================================================
    66*/
     7
     8#include "all.h"
    79
    810#define PALETTE         ((uint16_t *)0x280000L)
  • vlib/vsinit.c

    r5fa506d r6262b5c  
    77*/
    88
    9 #include "hwdefs.h"
    10 #include "graphdef.h"
    11 #include "vsdd.h"
    12 #include "vsddvars.h"
    13 #include "memory.h"
     9#include "all.h"
    1410
    1511/*
     
    2622        v_curob = &v_obtab[0];
    2723}
     24
  • vlib/vspray4.c

    r5fa506d r6262b5c  
    66*/
    77
    8 #include "stddefs.h"
    9 #include "vsddsw.h"
     8#include "all.h"
    109
    1110static  int8_t cl[81];
     
    6261        }
    6362}
     63
  • vlib/vtext.c

    r5fa506d r6262b5c  
    77   =============================================================================
    88*/
     9
     10#include "all.h"
    911
    1012static int16_t  msk[] = { 0xFF00, 0x00FF };
  • vlib/vwputm.c

    r5fa506d r6262b5c  
    1616*/
    1717
    18 #include <vsdd.h>
     18#include "all.h"
    1919
    2020extern  void    vwputs(int16_t *obase, int16_t nw, int16_t fg, int16_t bg, int16_t row, int16_t col, int8_t *str);
     
    3434}
    3535       
     36
Note: See TracChangeset for help on using the changeset viewer.