1<#
2//
3// Copyright (c) 2010-2018 Antmicro
4// Copyright (c) 2011-2015 Realtime Embedded
5//
6// This file is licensed under the MIT License.
7// Full license text is available in 'licenses/MIT.txt'.
8//
9#>
10<#@ template language="C#" #>
11<#@ include file="../Common/RegisterTemplateDefinitions.tt" #>
12<#
13    CLASS_NAME = "Arm";
14    HEADER_FILE = "Emulator/Cores/tlib/arch/arm/cpu_registers.h";
15    DEFINES.Add("TARGET_ARM32");
16
17    BEFORE_WRITE_HOOKS.Add("PC", "BeforePCWrite");
18
19    GENERAL_REGISTERS.AddRange(new[] { "R0", "R1", "R2", "R3", "R4", "R5", "R6", "R7", "R8", "R9", "R10", "R11", "R12", "R13", "R14", "R15" });
20#>
21<#@ include file="../Common/RegisterTemplate.tt" #>
22