blob: 15ac5f02ba53d1c97cf0cf182919f32f913c8513 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* $NetBSD: cons.h,v 1.6 2021/01/24 07:36:53 mrg Exp $ */
/*
* PROM I/O nodes and arguments are prepared by consinit().
* Drivers can examine these when looking for a console device match.
*/
extern int prom_stdin_node;
extern int prom_stdout_node;
extern char prom_stdin_args[];
extern char prom_stdout_args[];
extern struct consdev consdev_prom;
#ifdef KGDB
struct zs_chanstate;
void zs_kgdb_init(void);
void zskgdb(struct zs_chanstate *);
#endif
|