x86 0.32.0

Library to program x86 (amd64) hardware. Contains x86 specific data structure descriptions, data-tables, as well as convenience function to call assembly instructions typically not exposed in higher level languages.
Documentation
1
2
3
4
5
6
7
8
9
10
#![feature(start, libc)]
#![no_std]

extern crate libc;
extern crate x86;

#[start]
fn start(_argc: isize, _argv: *const *const u8) -> isize {
    0
}