blob: af19ccfa4feb8ab613fa6307d9be7273f2413a94 [file] [log] [blame]
Harry Liebel0f702c62013-12-17 18:19:04 +00001/*
Dan Handleye83b0ca2014-01-14 18:17:09 +00002 * Copyright (c) 2013-2014, ARM Limited and Contributors. All rights reserved.
Harry Liebel0f702c62013-12-17 18:19:04 +00003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Harry Liebel0f702c62013-12-17 18:19:04 +00005 */
6
Dan Handley91b624e2014-07-29 17:14:00 +01007#include <debug.h>
Harry Liebel0f702c62013-12-17 18:19:04 +00008
9/*
10 * This is a basic implementation. This could be improved.
11 */
12void abort (void)
13{
Dan Handley91b624e2014-07-29 17:14:00 +010014 ERROR("ABORT\n");
15 panic();
Harry Liebel0f702c62013-12-17 18:19:04 +000016}