Changeset 5fa506d in buchla-68k


Ignore:
Timestamp:
07/10/2017 09:48:23 AM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
6262b5c
Parents:
f7428b1
Message:

Include file cleanup.

Files:
32 edited
8 moved

Legend:

Unmodified
Added
Removed
  • include/all.h

    rf7428b1 r5fa506d  
    1515#include "charset.h"
    1616#include "cmeta.h"
    17 #include "configs.h"
    1817#include "ctype.h"
    1918#include "curpak.h"
    2019#include "debug.h"
    21 #include "dfltins.h"
    2220#include "errdefs.h"
    2321#include "errno.h"
     
    2624#include "fpu.h"
    2725#include "fspars.h"
    28 #include "glcbars.h"
    2926#include "glcdefs.h"
    3027#include "graphdef.h"
     
    3229#include "instdsp.h"
    3330#include "io.h"
    34 #include "knmtab.h"
    3531#include "lcdline.h"
    3632#include "libdsp.h"
     
    4238#include "patch.h"
    4339#include "ptdisp.h"
    44 #include "ptoftab.h"
    45 #include "ratio.h"
    4640#include "regs.h"
    4741#include "scdsp.h"
     
    5751#include "stdint.h"
    5852#include "stdio.h"
    59 #include "swrtab.h"
    6053#include "timers.h"
    6154#include "tundsp.h"
    6255#include "uartio.h"
    6356#include "vsdd.h"
    64 #include "wdcurtb.h"
    6557#include "wordq.h"
    6658#include "wsdsp.h"
  • include/asgdsp.h

    rf7428b1 r5fa506d  
    77
    88#pragma once
     9
    910#include "stdint.h"
     11#include "vsdd.h"
    1012
    1113struct  asgent  {       /* assignment table library entry structure */
  • include/biosdefs.h

    rf7428b1 r5fa506d  
    77
    88#pragma once
     9
    910#include "stdint.h"
    1011
  • include/cmeta.h

    rf7428b1 r5fa506d  
    77
    88#pragma once
     9
     10#include "stddefs.h"
    911
    1012#define CM_CHR(c)       CMchr(c)
     
    2022#define CM_ULIST(l)     CMulist(l)
    2123
    22 #define CM_OK           return(QQsw = TRUE)
    23 #define CM_NOGO         return(QQsw = FALSE)
     24#define CM_OK           return (QQsw = TRUE)
     25#define CM_NOGO         return (QQsw = FALSE)
    2426
    2527#define CM_DBLK         if (!QQanch) while (*QQip EQ ' ') ++QQip
  • include/curpak.h

    rf7428b1 r5fa506d  
    88
    99#pragma once
     10
     11#include "fields.h"
    1012#include "stdint.h"
    1113
  • include/fields.h

    rf7428b1 r5fa506d  
    77
    88#pragma once
     9
    910#include "stdint.h"
    1011
  • include/fspars.h

    rf7428b1 r5fa506d  
    77
    88#pragma once
     9
     10#include "stdint.h"
    911
    1012#define TBUFFER         1       /* non-zero to enable track buffering */
  • include/glcdefs.h

    rf7428b1 r5fa506d  
    77
    88#pragma once
     9
     10#include "stdint.h"
    911
    1012#define G_INIT          (int8_t)0x40
  • include/hwdefs.h

    rf7428b1 r5fa506d  
    77
    88#pragma once
     9
    910#include "stdint.h"
    1011
  • include/instdsp.h

    rf7428b1 r5fa506d  
    77
    88#pragma once
     9
     10#include "midas.h"
    911#include "stdint.h"
    10 #include "midas.h"
     12#include "vsdd.h"
    1113
    1214/* --------------- Miscellaneous Instrument display definitions ------------- */
  • include/io.h

    rf7428b1 r5fa506d  
    77
    88#pragma once
     9
     10#include "fspars.h"             /* file system parameters */
    911#include "stdint.h"
    10 #include "fspars.h"             /* file system parameters */
    1112
    1213struct channel {                /* channel table entry */
  • include/libdsp.h

    rf7428b1 r5fa506d  
    99
    1010#pragma once
     11
    1112#include "stdint.h"
    1213
  • include/menu.h

    rf7428b1 r5fa506d  
    77
    88#pragma once
     9
     10#include "vsdd.h"
    911
    1012#define MCURSOR         1       /* cursor color */
  • include/midas.h

    rf7428b1 r5fa506d  
    77
    88#pragma once
     9
     10#include "graphdef.h"
    911#include "stdint.h"
     12#include "vsdd.h"
    1013
    1114typedef void (*LPF)(int16_t _1, int16_t _2);    /* pointer to a LCD panel function */
  • include/objdefs.h

    rf7428b1 r5fa506d  
    77
    88#pragma once
     9
    910#include "stdint.h"
    1011
  • include/patch.h

    rf7428b1 r5fa506d  
    77
    88#pragma once
     9
    910#include "stdint.h"
    1011
  • include/ptdisp.h

    rf7428b1 r5fa506d  
    77
    88#pragma once
     9
     10#include "midas.h"
    911
    1012#define OB08LOC         0               /* offset to headings */
  • include/regs.h

    rf7428b1 r5fa506d  
    1010
    1111#pragma once
     12
    1213#include "stdint.h"
    1314
  • include/scdsp.h

    rf7428b1 r5fa506d  
    77
    88#pragma once
     9
     10#include "midas.h"
     11#include "vsdd.h"
    912
    1013#define SCOROBP 1                       /* score object priority */
  • include/sclock.h

    rf7428b1 r5fa506d  
    77
    88#pragma once
     9
     10#include "hwdefs.h"
    911
    1012#define CK_LOCAL        0
  • include/score.h

    rf7428b1 r5fa506d  
    77
    88#pragma once
     9
    910#include "stdint.h"
    1011
  • include/setjmp.h

    rf7428b1 r5fa506d  
    1616
    1717#pragma once
     18
    1819#include "stdint.h"
    1920
  • include/slice.h

    rf7428b1 r5fa506d  
    77
    88#pragma once
     9
    910#include "stdint.h"
    1011
  • include/smdefs.h

    rf7428b1 r5fa506d  
    77
    88#pragma once
     9
    910#include "stdint.h"
    1011
  • include/stdarg.h

    rf7428b1 r5fa506d  
    77
    88#pragma once
     9
    910#include "stdint.h"
    1011
    1112typedef int8_t  *va_list;
    1213
    13 #define va_start(ap, last)      ap = (int8_t *)&last + sizeof(last)
    14 #define va_arg(ap, type)        (ap += sizeof(type), ap[-1])
     14#define va_start(ap, last)      (ap = (int8_t *)&last + sizeof last)
     15#define va_arg(ap, type)        (ap += sizeof (type), ((type *)ap)[-1])
    1516#define va_end(ap)
  • include/stddefs.h

    rf7428b1 r5fa506d  
    88
    99#pragma once
     10
    1011#include "stdint.h"
    1112
     
    3637#define FOREVER for (;;)                /*      Infinite loop declaration   */
    3738
    38 #define NULL    0                       /*      Null pointer value          */
     39#define NULL    ((void *)0)             /*      Null pointer value          */
    3940
    4041#define TRUE    1                       /*      Function TRUE  value        */
  • include/stdio.h

    rf7428b1 r5fa506d  
    77
    88#pragma once
     9
     10#include "fspars.h"             /* file system parameters */
    911#include "stdint.h"
    10 #include "fspars.h"             /* file system parameters */
    1112
    1213#define EOF     -1
  • include/tundsp.h

    rf7428b1 r5fa506d  
    99
    1010#pragma once
     11
     12#include "midas.h"
     13#include "vsdd.h"
    1114
    1215#define TUNOBJ          8               /* display object number */
  • include/vsdd.h

    rf7428b1 r5fa506d  
    88
    99#pragma once
     10
    1011#include "stdint.h"
    1112
  • include/wordq.h

    rf7428b1 r5fa506d  
    77
    88#pragma once
     9
    910#include "stdint.h"
    1011
  • include/wsdsp.h

    rf7428b1 r5fa506d  
    1111
    1212#pragma once
     13
     14#include "midas.h"
    1315#include "stdint.h"
    14 #include "midas.h"
    1516
    1617struct  wstbl   {               /* waveshape table library entry */
  • lib700/ctype.c

    rf7428b1 r5fa506d  
    2626*/
    2727
    28 #if     SYS5CODE
    29 char _ctype[] = {       /* this table handles EOF as a legal value */
    30 
    31         /* -1   EOF */   0,                                     /* -1 EOF */
    32 #else
    33 
    34 void ___atab(void)
    35 {
    36         return;
    37 }
    38 
    3928int8_t __atab[] = {     /* EOF won't work properly with this table */
    40 #endif
    4129
    4230        /* Octal */                                             /* Hex */
  • ram/configs.h

    rf7428b1 r5fa506d  
    11#pragma once
     2
    23#include "stdint.h"
    34
  • ram/dfltins.h

    rf7428b1 r5fa506d  
    11#pragma once
     2
    23#include "stdint.h"
    34
  • ram/glcbars.h

    rf7428b1 r5fa506d  
    55
    66#pragma once
     7
    78#include "stdint.h"
    89
  • ram/knmtab.h

    rf7428b1 r5fa506d  
    77
    88#pragma once
     9
    910#include "stdint.h"
    1011
  • ram/ptoftab.h

    rf7428b1 r5fa506d  
    11#pragma once
     2
    23#include "stdint.h"
    34
  • ram/ratio.h

    rf7428b1 r5fa506d  
    11#pragma once
     2
    23#include "stdint.h"
    34
  • ram/swrtab.h

    rf7428b1 r5fa506d  
    11#pragma once
     2
    23#include "stdint.h"
    34
  • ram/wdcurtb.h

    rf7428b1 r5fa506d  
    77
    88#pragma once
     9
    910#include "stdint.h"
    1011
Note: See TracChangeset for help on using the changeset viewer.