#port #freestanding #no-std #cursor #copy #inb-outb #inout

inout_port-rs

inb/outb port in freestanding Rust

1 unstable release

0.1.1 Nov 28, 2023
0.1.0 Nov 28, 2023

#4 in #freestanding

Download history 8/week @ 2024-02-19 25/week @ 2024-02-26 4/week @ 2024-03-04 9/week @ 2024-03-11 4/week @ 2024-03-25 45/week @ 2024-04-01

59 downloads per month
Used in 2 crates (via cursor-rs)

MIT/Apache

4KB

inout_port-rs

inb/outb port in freestanding Rust.

How to use

cargo add inout_port-rs

Example

#![no_std]
#![no_main]

extern crate inout_port_rs;

#[no_mangle]
pub extern "C" fn _start() -> !
{
	_ = main();
	loop {}
}

use core::panic::PanicInfo;
#[panic_handler]
fn panic(_info: &PanicInfo) -> ! {
    loop {}
}

#[derive(Copy, Clone)]
#[repr(C, packed)]
struct __LowHigh {
    l: u8,
    h: u8,
}

#[derive(Copy, Clone)]
union __Cursor {
    value: u16,
    lh: __LowHigh,
}
fn set_cursor(y: usize, x: usize) {
    let cursor = __Cursor {
        value: (y * 80 + x) as u16,
    };
    unsafe {
        inout_port_rs::outb(0xe, 0x3d4);
        inout_port_rs::outb(cursor.lh.h, 0x3d5);
        inout_port_rs::outb(0xf, 0x3d4);
        inout_port_rs::outb(cursor.lh.l, 0x3d5);
    }
}
fn main() {
	set_cursor(0,0);
}

Contact me


lib.rs:

inout_port-rs

inb/outb port in freestanding Rust.

Example#1

#![no_std]
#![no_main]

extern crate inout_port_rs;

#[no_mangle]
pub extern "C" fn _start() -> !
{
	_ = main();
	loop {}
}

use core::panic::PanicInfo;
#[panic_handler]
fn panic(_info: &PanicInfo) -> ! {
    loop {}
}

#[derive(Copy, Clone)]
#[repr(C, packed)]
struct __LowHigh {
    l: u8,
    h: u8,
}

#[derive(Copy, Clone)]
union __Cursor {
    value: u16,
    lh: __LowHigh,
}
fn set_cursor(y: usize, x: usize) {
    let cursor = __Cursor {
        value: (y * 80 + x) as u16,
    };
    unsafe {
        inout_port_rs::outb(0xe, 0x3d4);
        inout_port_rs::outb(cursor.lh.h, 0x3d5);
        inout_port_rs::outb(0xf, 0x3d4);
        inout_port_rs::outb(cursor.lh.l, 0x3d5);
    }
}
fn main() {
	set_cursor(0,0);
}

No runtime deps