mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-13 00:26:35 +00:00
39 lines
No EOL
1.1 KiB
C
39 lines
No EOL
1.1 KiB
C
/*
|
|
* Copyright (c) 2018 Atmosphère-NX
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms and conditions of the GNU General Public License,
|
|
* version 2, as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef EXOSPHERE_PANIC_COLOR_H
|
|
#define EXOSPHERE_PANIC_COLOR_H
|
|
|
|
#define COLOR_0 0x00F00003
|
|
#define COLOR_1 0x0F000003
|
|
#define COLOR_2 0xF0000003
|
|
#define COLOR_3 0x0FF00003
|
|
#define COLOR_4 0xF0F00003
|
|
#define COLOR_5 0xFF000003
|
|
#define COLOR_6 0xFFF00003
|
|
#define COLOR_7 0xAAF00003
|
|
#define COLOR_8 0xAFA00003
|
|
#define COLOR_9 0xFAA00003
|
|
#define COLOR_A 0x33300003
|
|
#define COLOR_B 0x06F00003
|
|
#define COLOR_C 0x14800003
|
|
#define COLOR_D 0x00300003
|
|
#define COLOR_E 0x03000003
|
|
#define COLOR_F 0xB6000003
|
|
|
|
#define PANIC_REBOOT 0x20
|
|
|
|
#endif |