Skip to content

Commit

Permalink
cpuio v0.3.0: Update to new llvm_asm syntax
Browse files Browse the repository at this point in the history
Thank you to @phill-opp!
  • Loading branch information
emk committed May 20, 2020
1 parent 8274d1c commit 76ee6f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/cpuio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cpuio"
version = "0.2.0"
version = "0.3.0"
authors = ["Eric Kidd <[email protected]>"]

description = "Bare metal (no_std) inb, outb, inw, outw, inl, outw instructions with Rust-like API"
Expand Down
2 changes: 1 addition & 1 deletion crates/cpuio/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! CPU-level input/output instructions, including `inb`, `outb`, etc., and
//! a high level Rust wrapper.
#![feature(llvm_asm, const_fn, no_std)]
#![feature(llvm_asm, const_fn)]
#![no_std]

use core::marker::PhantomData;
Expand Down

0 comments on commit 76ee6f0

Please sign in to comment.