1 // Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 // 3 // Portions Copyright 2017 The Chromium OS Authors. All rights reserved. 4 // Use of this source code is governed by a BSD-style license that can be 5 // found in the LICENSE-BSD-3-Clause file. 6 // 7 // Copyright © 2019 Intel Corporation 8 // 9 // SPDX-License-Identifier: Apache-2.0 OR BSD-3-Clause 10 // 11 // Copyright © 2020, Microsoft Corporation 12 // 13 // Copyright 2022 Arm Limited (or its affiliates). All rights reserved. 14 // 15 16 pub mod emulator; 17 18 #[cfg(target_arch = "x86_64")] 19 #[macro_use] 20 pub mod x86; 21 22 #[cfg(target_arch = "aarch64")] 23 pub mod aarch64; 24 25 #[cfg(target_arch = "riscv64")] 26 pub mod riscv64; 27