More cleanup
This commit is contained in:
parent
c9ddefd045
commit
371ac96fb1
6
.github/workflows/rust.yml
vendored
6
.github/workflows/rust.yml
vendored
|
@ -47,12 +47,6 @@ jobs:
|
||||||
- name: "Run cargo doc"
|
- name: "Run cargo doc"
|
||||||
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"
|
- name: "Install Rustup Components"
|
||||||
run: rustup component add rust-src llvm-tools-preview
|
run: rustup component add rust-src llvm-tools-preview
|
||||||
- name: "Install cargo-xbuild"
|
- name: "Install cargo-xbuild"
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
//! This crate provides vga specific functions, data structures,
|
//! This crate provides vga specific functions, data structures,
|
||||||
//! and access to various registers.
|
//! and access to various registers.
|
||||||
|
//!
|
||||||
|
//! Memory addresses `0xA0000 -> 0xBFFFF` must be readable and writeable
|
||||||
|
//! this crate to work properly.
|
||||||
|
|
||||||
#![no_std]
|
#![no_std]
|
||||||
#![warn(missing_docs)]
|
#![warn(missing_docs)]
|
||||||
|
|
Loading…
Reference in a new issue