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 = "X86"; 14 HEADER_FILE = "Emulator/Cores/tlib/arch/i386/cpu_registers.h"; 15 16 PC_REGISTER = "EIP"; 17 18 GENERAL_REGISTERS.AddRange(new[] { "EAX", "ECX", "EDX", "EBX", "ESP", "EBP", "ESI", "EDI", "EIP", "EFLAGS", "CS", "SS", "DS", "ES", "FS", "GS", "CR0", "CR1", "CR2", "CR3", "CR4" }); 19#> 20<#@ include file="../Common/RegisterTemplate.tt" #>