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

    r46d8069 r0580615  
    1717extern  short   (*itxput)();
    1818
    19 extern  short   lseg(), dswin(), tsplot4(), vbfill4(), enterit(), vtdisp();
    20 extern  short   advicur(), bspicur();
    21 
    22 extern  short   drawfn(), selpnt(), ttox(), vtoy();
    23 
    24 extern  unsigned        timeto(), exp_c();
     19extern  void    lseg(short x1, short y1, short x2, short y2, short t);
     20extern  void    dswin(short n);
     21extern  void    tsplot4(int *obase, int nw, int fg, int row, int col, char *str, int pitch);
     22extern  void    vbfill4(unsigned *obj, short obwidth, short xmin, short ymin, short xmax, short ymax, unsigned color);
     23extern  void    enterit(void);
     24extern  void    vtdisp(unsigned *obj, unsigned fg, unsigned bg, short row, short col, char *buf);
     25extern  void    advicur(void);
     26extern  void    bspicur(void);
     27
     28extern  void    drawfn(short fn, short how, short pen, short wn);
     29extern  short   selpnt(void);
     30extern  short   ttox(unsigned time, short window);
     31extern  short   vtoy(short val, short window);
     32
     33extern  short   timeto(short fn, short pj);
     34extern  unsigned        exp_c(unsigned c);
    2535
    2636/*
     
    5464/* forward references */
    5565
    56 short   bx_null(), idfnbox();
     66short   bx_null(void);
     67short   idfnbox(short n);
    5768
    5869/*
     
    106117*/
    107118
    108 idtxput(row, col, txt, tag)
    109 short row, col;
    110 char *txt;
    111 short tag;
     119void idtxput(short row, short col, char *txt, short tag)
    112120{
    113121        if (v_regs[5] & 0x0180)
     
    123131*/
    124132
    125 showim()
     133void showim(void)
    126134{
    127135        register short row, col, ins;
     
    155163*/
    156164
    157 cdnicur()
     165void cdnicur(void)
    158166{
    159167        register struct instdef *ip;
     
    199207*/
    200208
    201 cupicur()
     209void cupicur(void)
    202210{
    203211        register struct instdef *ip;
     
    243251*/
    244252
    245 short
    246 edfunc(n)
    247 short n;
     253short edfunc(short n)
    248254{
    249255        register unsigned cx;
     
    330336*/
    331337
    332 showpt(q)
    333 short q;
     338void showpt(short q)
    334339{
    335340        register short  ptx, pty, i, j, k;
     
    373378*/
    374379
    375 endityp()
     380void endityp(void)
    376381{
    377382        idnamsw = FALSE;
     
    388393*/
    389394
    390 showfn()
     395void showfn(void)
    391396{
    392397        dswin(13);      /* source multiplier */
     
    400405*/
    401406
    402 short
    403 bx_null()
     407short bx_null(void)
    404408{
    405409        return(TRUE);
     
    412416*/
    413417
    414 iclrwin(n)
    415 register short n;
     418void iclrwin(short n)
    416419{
    417420        if (v_regs[5] & 0x0180)
     
    432435*/
    433436
    434 short
    435 idfnbox(n)
    436 short n;
     437short idfnbox(short n)
    437438{
    438439        register short col, i, row;
Note: See TracChangeset for help on using the changeset viewer.