Harry Liebel | 0f702c6 | 2013-12-17 18:19:04 +0000 | [diff] [blame] | 1 | /* |
Dan Handley | e83b0ca | 2014-01-14 18:17:09 +0000 | [diff] [blame] | 2 | * Copyright (c) 2013-2014, ARM Limited and Contributors. All rights reserved. |
Harry Liebel | 0f702c6 | 2013-12-17 18:19:04 +0000 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Harry Liebel | 0f702c6 | 2013-12-17 18:19:04 +0000 | [diff] [blame] | 5 | */ |
6 | |||||
Dan Handley | 91b624e | 2014-07-29 17:14:00 +0100 | [diff] [blame] | 7 | #include <debug.h> |
Harry Liebel | 0f702c6 | 2013-12-17 18:19:04 +0000 | [diff] [blame] | 8 | |
9 | /* | ||||
10 | * This is a basic implementation. This could be improved. | ||||
11 | */ | ||||
12 | void abort (void) | ||||
13 | { | ||||
Dan Handley | 91b624e | 2014-07-29 17:14:00 +0100 | [diff] [blame] | 14 | ERROR("ABORT\n"); |
15 | panic(); | ||||
Harry Liebel | 0f702c6 | 2013-12-17 18:19:04 +0000 | [diff] [blame] | 16 | } |