x86_64 0.1.2

Provides x86_64 specific functions and data structures, and access to various system registers.
Documentation
#![feature(lang_items, start, libc)]
#![no_std]

extern crate libc;
extern crate x86_64;

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

#[lang = "eh_personality"]
extern "C" fn eh_personality() {}
#[lang = "panic_fmt"]
fn panic_fmt() -> ! {
    loop {}
}