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