blob: 4d214bba64ccae51446b2f3fe7c36e99f75371d5 [file] [log] [blame]
// Copyright 2018 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.
// Do not include directly, use "arch.h".
#ifndef SRC_DEVELOPER_DEBUG_DEBUG_AGENT_ARCH_ARM64_H_
#define SRC_DEVELOPER_DEBUG_DEBUG_AGENT_ARCH_ARM64_H_
#include <stdint.h>
#include <zircon/syscalls/debug.h>
namespace debug_agent {
namespace arch {
// The type that is large enough to hold the debug breakpoint CPU instruction.
using BreakInstructionType = uint32_t;
} // namespace arch
} // namespace debug_agent
#endif // SRC_DEVELOPER_DEBUG_DEBUG_AGENT_ARCH_ARM64_H_