blob: 48b97719214eec2729556803a7569e2ed84b2264 [file] [log] [blame]
// Copyright 2017 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#pragma once
namespace inferior_control {
// The arm64 general register names.
enum class Arm64Register {
X0 = 0,
FP = 29,
SP = 31,
PC = 32,
CPSR = 33,
NUM_REGISTERS
};
} // namespace inferior_control