aboutsummaryrefslogtreecommitdiff
path: root/src/ppc/reg/mod.rs
diff options
context:
space:
mode:
authorJoel Galenson <jgalenson@google.com>2021-08-03 21:23:32 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2021-08-03 21:23:32 +0000
commitbd0fc1143e7ad56e6c189d21b1d5ab24006a8122 (patch)
treec39c3a7ddb6c612daf46e1921f2ca6e98e1f56b1 /src/ppc/reg/mod.rs
parent861ca6705fbacabc9b281bd5b901be70b9125677 (diff)
parente54eca01fafc67f5e293bb7b4a3959e9313ba06b (diff)
downloadgdbstub_arch-bd0fc1143e7ad56e6c189d21b1d5ab24006a8122.tar.gz
Import gdbstub_arch-0.1.0 am: 52a992f950 am: e54eca01fa
Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/gdbstub_arch/+/1783794 Change-Id: I4f8d69e99766caeeb819038fddc0db343d0a2b2a
Diffstat (limited to 'src/ppc/reg/mod.rs')
-rw-r--r--src/ppc/reg/mod.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/ppc/reg/mod.rs b/src/ppc/reg/mod.rs
new file mode 100644
index 0000000..fde8e55
--- /dev/null
+++ b/src/ppc/reg/mod.rs
@@ -0,0 +1,9 @@
+//! `Register` structs for PowerPC architectures
+
+/// `RegId` definitions for PowerPC architectures.
+pub mod id;
+
+mod common;
+
+pub use common::PowerPcCommonRegs;
+type PpcVector = u128;