diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 60a3f61..71326a5 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -47,12 +47,6 @@ jobs: - name: "Run cargo doc" run: cargo doc - - name: "Install Rustup Targets" - run: rustup target add i686-unknown-linux-gnu - - - name: "Build on non x86_64 platforms" - run: cargo build --target i686-unknown-linux-gnu - - name: "Install Rustup Components" run: rustup component add rust-src llvm-tools-preview - name: "Install cargo-xbuild" diff --git a/src/lib.rs b/src/lib.rs index 6fbba27..5c58ccc 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,8 @@ //! This crate provides vga specific functions, data structures, //! and access to various registers. +//! +//! Memory addresses `0xA0000 -> 0xBFFFF` must be readable and writeable +//! this crate to work properly. #![no_std] #![warn(missing_docs)]