blob: 14b6bd6f4932e6536d7c2a82a679989992cd9be9 [file] [log] [blame]
Heinrich Schuchardtdab87882018-12-26 17:20:35 +01001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * The 'exception' command can be used for testing exception handling.
4 *
5 * Copyright (c) 2018, Heinrich Schuchardt <xypron.glpk@gmx.de>
6 */
7
Heinrich Schuchardtdab87882018-12-26 17:20:35 +01008#include <command.h>
9
Simon Glass09140112020-05-10 11:40:03 -060010static int do_undefined(struct cmd_tbl *cmdtp, int flag, int argc,
11 char *const argv[])
Heinrich Schuchardtdab87882018-12-26 17:20:35 +010012{
13 asm volatile (".word 0xffff\n");
14 return CMD_RET_FAILURE;
15}
16
Simon Glass09140112020-05-10 11:40:03 -060017static struct cmd_tbl cmd_sub[] = {
Heinrich Schuchardtdab87882018-12-26 17:20:35 +010018 U_BOOT_CMD_MKENT(undefined, CONFIG_SYS_MAXARGS, 1, do_undefined,
19 "", ""),
20};
21
22static char exception_help_text[] =
23 "<ex>\n"
24 " The following exceptions are available:\n"
25 " undefined - undefined instruction\n"
26 ;
27
28#include <exception.h>