aboutsummaryrefslogtreecommitdiff
path: root/src/x86.rs
diff options
context:
space:
mode:
authorGravatar John Ericson <Ericson2314@Yahoo.com> 2016-04-09 17:58:20 -0700
committerGravatar John Ericson <Ericson2314@Yahoo.com> 2016-04-09 17:58:20 -0700
commit99d1e36518db71c48c70299f83c732adb8f6605c (patch)
tree0fc8101777f968d92bff2dfbd60e150b2bbf910c /src/x86.rs
parente2df889a80415c415f915fb1a5f8119b242025dd (diff)
downloadrust-x86-99d1e36518db71c48c70299f83c732adb8f6605c.tar.gz
rust-x86-99d1e36518db71c48c70299f83c732adb8f6605c.tar.zst
rust-x86-99d1e36518db71c48c70299f83c732adb8f6605c.zip
Add publicity to bitflags
Diffstat (limited to 'src/x86.rs')
-rw-r--r--src/x86.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/x86.rs b/src/x86.rs
index 3c5cd99..d307dd1 100644
--- a/src/x86.rs
+++ b/src/x86.rs
@@ -7,7 +7,7 @@ use core::mem::size_of;
mod x86_shared;
bitflags! {
- flags GdtAccess: u8 {
+ pub flags GdtAccess: u8 {
const Accessed = 1 << 0,
const Writable = 1 << 1,
const Direction = 1 << 2,