More cleanup

This commit is contained in:
Ryan Kennedy 2020-03-12 13:04:25 -05:00
parent c9ddefd045
commit 371ac96fb1
2 changed files with 3 additions and 6 deletions

View file

@ -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"

View file

@ -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)]