Home | History | Annotate | Line # | Download | only in libsa
libx68k.h revision 1.3.6.2
      1  1.3.6.2  thorpej /*	$NetBSD: libx68k.h,v 1.3.6.2 2002/01/10 19:50:37 thorpej Exp $	*/
      2  1.3.6.2  thorpej 
      3  1.3.6.2  thorpej /*
      4  1.3.6.2  thorpej  * Copyright (c) 2001 Minoura Makoto
      5  1.3.6.2  thorpej  * All rights reserved.
      6  1.3.6.2  thorpej  *
      7  1.3.6.2  thorpej  * Redistribution and use in source and binary forms, with or without
      8  1.3.6.2  thorpej  * modification, are permitted provided that the following conditions
      9  1.3.6.2  thorpej  * are met:
     10  1.3.6.2  thorpej  * 1. Redistributions of source code must retain the above copyright
     11  1.3.6.2  thorpej  *    notice, this list of conditions and the following disclaimer.
     12  1.3.6.2  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.3.6.2  thorpej  *    notice, this list of conditions and the following disclaimer in the
     14  1.3.6.2  thorpej  *    documentation and/or other materials provided with the distribution.
     15  1.3.6.2  thorpej  *
     16  1.3.6.2  thorpej  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     17  1.3.6.2  thorpej  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     18  1.3.6.2  thorpej  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     19  1.3.6.2  thorpej  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     20  1.3.6.2  thorpej  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     21  1.3.6.2  thorpej  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     22  1.3.6.2  thorpej  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     23  1.3.6.2  thorpej  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     24  1.3.6.2  thorpej  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25  1.3.6.2  thorpej  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26  1.3.6.2  thorpej  * SUCH DAMAGE.
     27  1.3.6.2  thorpej  */
     28  1.3.6.2  thorpej 
     29  1.3.6.2  thorpej /*
     30  1.3.6.2  thorpej  * Prototypes for x68k-specific libsa functions.
     31  1.3.6.2  thorpej  */
     32  1.3.6.2  thorpej 
     33  1.3.6.2  thorpej struct devspec {
     34  1.3.6.2  thorpej 	const char *ds_name;
     35  1.3.6.2  thorpej 	int ds_dev;
     36  1.3.6.2  thorpej 	int ds_maxunit;
     37  1.3.6.2  thorpej };
     38  1.3.6.2  thorpej 
     39  1.3.6.2  thorpej /* consio.c */
     40  1.3.6.2  thorpej int consio_init (int);
     41  1.3.6.2  thorpej int check_getchar (void);
     42  1.3.6.2  thorpej int awaitkey_1sec (void);
     43  1.3.6.2  thorpej void print_title (const char*, ...);
     44  1.3.6.2  thorpej 
     45  1.3.6.2  thorpej /* parseutils.c */
     46  1.3.6.2  thorpej char *gettrailer (char*);
     47  1.3.6.2  thorpej int parseopts (const char*, int*);
     48  1.3.6.2  thorpej int parseboot (char*, char**, int*);
     49  1.3.6.2  thorpej 
     50  1.3.6.2  thorpej /* sd.c */
     51  1.3.6.2  thorpej struct sd_softc;
     52  1.3.6.2  thorpej int sdstrategy(void *devdata, int rw, daddr_t blk, size_t, void*, size_t*);
     53  1.3.6.2  thorpej int sdopen(struct open_file *, ...);
     54  1.3.6.2  thorpej int sdclose(struct open_file*);
     55  1.3.6.2  thorpej int sd_getbsdpartition(int, int);
     56  1.3.6.2  thorpej int cdstrategy(void *devdata, int rw, daddr_t blk, size_t, void*, size_t*);
     57  1.3.6.2  thorpej int cdopen(struct open_file *, ...);
     58  1.3.6.2  thorpej int cdclose(struct open_file*);
     59  1.3.6.2  thorpej 
     60  1.3.6.2  thorpej /* fd.c */
     61  1.3.6.2  thorpej int fdstrategy(void *devdata, int rw, daddr_t blk, size_t, void*, size_t*);
     62  1.3.6.2  thorpej int fdopen(struct open_file *, ...);
     63  1.3.6.2  thorpej int fdclose(struct open_file*);
     64  1.3.6.2  thorpej 
     65  1.3.6.2  thorpej /* devopen.c */
     66  1.3.6.2  thorpej int devparse(const char *, int *, int *, int *, char **);
     67  1.3.6.2  thorpej extern int devopen_open_dir;
     68  1.3.6.2  thorpej 
     69  1.3.6.2  thorpej /* chdsk.c */
     70  1.3.6.2  thorpej int changedisk_hook(struct open_file *);
     71