Changeset b28a12e in buchla-68k for vlib


Ignore:
Timestamp:
07/10/2017 02:17:49 PM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
06f6615
Parents:
39a696b
Message:

Zero redundant declarations.

Location:
vlib
Files:
16 edited

Legend:

Unmodified
Added
Removed
  • vlib/cg2.c

    r39a696b rb28a12e  
    1 #include "all.h"
     1#include "ram.h"
    22
    33/* Character generator table -- 12V by 8H */
  • vlib/cg3.c

    r39a696b rb28a12e  
    33/* Generated:  1989-11-16  15:40:14 */
    44
    5 #include "all.h"
     5#include "ram.h"
    66
    77/* int16_t      cg_rows = 14; */
  • vlib/glcinit.c

    r39a696b rb28a12e  
    5959*/
    6060
    61 #include "all.h"
     61#include "ram.h"
    6262
    6363uint16_t        lcdbase;        /* LCD graphics base address */
  • vlib/lseg.c

    r39a696b rb28a12e  
    77*/
    88
    9 #include "all.h"
     9#include "ram.h"
    1010
    1111void   (*point)(int16_t x, int16_t y, int16_t pen);
  • vlib/vbfill4.c

    r39a696b rb28a12e  
    88*/
    99
    10 #include "all.h"
     10#include "ram.h"
    1111
    1212static int16_t  fm[] = {        /* fill masks */
  • vlib/vclrs.c

    r39a696b rb28a12e  
    1616*/
    1717
    18 #include "all.h"
     18#include "ram.h"
    1919
    2020/*
  • vlib/vhinit.c

    r39a696b rb28a12e  
    1616#define FASTCHIP        1       /* non-zero if it's the fast VSDD chip */
    1717
    18 #include "all.h"
     18#include "ram.h"
    1919
    2020#define VREG(h,v)       ((h<<10)|v)
    21 
    22 extern  int16_t cgtable[][256];
    23 extern  int16_t cg_rows;
    2421
    2522struct octent   v_obtab[16];    /* object control table */
  • vlib/vmput.c

    r39a696b rb28a12e  
    1919*/
    2020
    21 #include "all.h"
     21#include "ram.h"
    2222
    2323/*
  • vlib/vobjfns.c

    r39a696b rb28a12e  
    5353*/
    5454
    55 #include "all.h"
    56 
    57 extern  void    vbank(uint16_t b);
    58 extern  void    objon(uint16_t obj, uint16_t line, uint16_t num);
    59 extern  void    VIint(void);
    60 
    61 extern  uint16_t setipl(uint16_t arg);
     55#include "ram.h"
    6256
    6357int16_t         wsize;          /* object width calculated by SetObj() */
  • vlib/vputs.c

    r39a696b rb28a12e  
    1212*/
    1313
    14 #include "all.h"
    15 
    16 extern  void    vputc(uint16_t *sbase, uint16_t row, uint16_t col, uint16_t c, uint16_t attrib);
     14#include "ram.h"
    1715
    1816/*
  • vlib/vputsv.c

    r39a696b rb28a12e  
    1212*/
    1313
    14 #include "all.h"
    15 
    16 extern  void    vputcv(uint16_t *adr, uint16_t row, uint16_t col, uint8_t chr, uint16_t atr, uint16_t cols);
     14#include "ram.h"
    1715
    1816/*
  • vlib/vsetpal.c

    r39a696b rb28a12e  
    66*/
    77
    8 #include "all.h"
     8#include "ram.h"
    99
    1010#define PALETTE         ((uint16_t *)0x280000L)
  • vlib/vsinit.c

    r39a696b rb28a12e  
    77*/
    88
    9 #include "all.h"
     9#include "ram.h"
    1010
    1111/*
  • vlib/vspray4.c

    r39a696b rb28a12e  
    66*/
    77
    8 #include "all.h"
     8#include "ram.h"
    99
    1010static  int8_t cl[81];
  • vlib/vtext.c

    r39a696b rb28a12e  
    88*/
    99
    10 #include "all.h"
     10#include "ram.h"
    1111
    1212static int16_t  msk[] = { 0xFF00, 0x00FF };
  • vlib/vwputm.c

    r39a696b rb28a12e  
    1616*/
    1717
    18 #include "all.h"
    19 
    20 extern  void    vwputs(int16_t *obase, int16_t nw, int16_t fg, int16_t bg, int16_t row, int16_t col, int8_t *str);
     18#include "ram.h"
    2119
    2220/*
Note: See TracChangeset for help on using the changeset viewer.