1217309Snwhitehorn/*-
2217309Snwhitehorn * Copyright (c) 2003 Jake Burkholder.
3217309Snwhitehorn * All rights reserved.
4217309Snwhitehorn *
5217309Snwhitehorn * Redistribution and use in source and binary forms, with or without
6217309Snwhitehorn * modification, are permitted provided that the following conditions
7217309Snwhitehorn * are met:
8217309Snwhitehorn * 1. Redistributions of source code must retain the above copyright
9217309Snwhitehorn *    notice, this list of conditions and the following disclaimer.
10217309Snwhitehorn * 2. Redistributions in binary form must reproduce the above copyright
11217309Snwhitehorn *    notice, this list of conditions and the following disclaimer in the
12217309Snwhitehorn *    documentation and/or other materials provided with the distribution.
13217309Snwhitehorn *
14217309Snwhitehorn * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15217309Snwhitehorn * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16217309Snwhitehorn * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17217309Snwhitehorn * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18217309Snwhitehorn * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19217309Snwhitehorn * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20217309Snwhitehorn * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21217309Snwhitehorn * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22217309Snwhitehorn * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: releng/11.0/sys/arm/include/sc_machdep.h 239696 2012-08-25 23:59:31Z gonzo $
27 */
28
29#ifndef	_MACHINE_SC_MACHDEP_H_
30#define	_MACHINE_SC_MACHDEP_H_
31
32/* Color attributes for foreground text */
33
34#define	FG_BLACK		0x0
35#define	FG_BLUE			0x1
36#define	FG_GREEN		0x2
37#define	FG_CYAN			0x3
38#define	FG_RED			0x4
39#define	FG_MAGENTA		0x5
40#define	FG_BROWN		0x6
41#define	FG_LIGHTGREY		0x7	/* aka white */
42#define	FG_DARKGREY		0x8
43#define	FG_LIGHTBLUE		0x9
44#define	FG_LIGHTGREEN		0xa
45#define	FG_LIGHTCYAN		0xb
46#define	FG_LIGHTRED		0xc
47#define	FG_LIGHTMAGENTA		0xd
48#define	FG_YELLOW		0xe
49#define	FG_WHITE		0xf	/* aka bright white */
50#define	FG_BLINK		0x80
51
52/* Color attributes for text background */
53
54#define	BG_BLACK		0x00
55#define	BG_BLUE			0x10
56#define	BG_GREEN		0x20
57#define	BG_CYAN			0x30
58#define	BG_RED			0x40
59#define	BG_MAGENTA		0x50
60#define	BG_BROWN		0x60
61#define	BG_LIGHTGREY		0x70
62#define	BG_DARKGREY		0x80
63#define	BG_LIGHTBLUE		0x90
64#define	BG_LIGHTGREEN		0xa0
65#define	BG_LIGHTCYAN		0xb0
66#define	BG_LIGHTRED		0xc0
67#define	BG_LIGHTMAGENTA		0xd0
68#define	BG_YELLOW		0xe0
69#define	BG_WHITE		0xf0
70
71#endif /* !_MACHINE_SC_MACHDEP_H_ */
72