summaryrefslogtreecommitdiff
path: root/core/cortex-m0/cpu.c
blob: 5dd758ac5f6816013e7bf3d713e0625c7775f404 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 *
 * Set up the Cortex-M0 core
 */

#include "cpu.h"

void cpu_init(void)
{
	/* Catch unaligned access */
	CPU_NVIC_CCR |= CPU_NVIC_CCR_UNALIGN_TRAP;

	/* Set supervisor call (SVC) to priority 0 */
	CPU_NVIC_SHCSR2 = 0;
}