blob: afddd909e1b3191c5d96a2133f5e05a2092dd7db [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_X64_H_
#define SRC_DEVELOPER_DEBUG_DEBUG_AGENT_ARCH_X64_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 = uint8_t;
} // namespace arch
} // namespace debug_agent
#endif // SRC_DEVELOPER_DEBUG_DEBUG_AGENT_ARCH_X64_H_