rust/examples/mini_core_hello_world.rs

60 lines
1.3 KiB
Rust
Raw Normal View History

// Adapted from https://github.com/sunfishcode/mir2cranelift/blob/master/rust-examples/nocore-hello-world.rs
2018-09-04 19:04:25 +02:00
#![feature(no_core, unboxed_closures, start, lang_items, box_syntax)]
#![no_core]
#![allow(dead_code)]
extern crate mini_core;
use mini_core::*;
#[link(name = "c")]
extern "C" {
fn puts(s: *const u8);
}
unsafe extern "C" fn my_puts(s: *const u8) {
puts(s);
}
2018-08-17 13:21:03 +02:00
#[lang = "termination"]
trait Termination {
fn report(self) -> i32;
}
impl Termination for () {
fn report(self) -> i32 {
unsafe {
NUM = 6 * 7 + 1 + (1u8 == 1u8) as u8; // 44
*NUM_REF as i32
}
}
}
#[lang = "start"]
fn start<T: Termination + 'static>(
main: fn() -> T,
_argc: isize,
_argv: *const *const u8,
) -> isize {
main().report() as isize
}
static mut NUM: u8 = 6 * 7;
static NUM_REF: &'static u8 = unsafe { &NUM };
2018-08-13 18:31:26 +02:00
2018-08-17 13:21:03 +02:00
fn main() {
unsafe {
2018-09-04 19:04:25 +02:00
let slice: &[u8] = b"Hello\0" as &[u8; 6];
if intrinsics::size_of_val(slice) as u8 != 6 {
panic(&("eji", "frjio", 0, 0));
};
let ptr: *const u8 = slice as *const [u8] as *const u8;
2018-09-04 19:04:25 +02:00
let world = box "World!\0";
puts(ptr);
2018-09-04 19:04:25 +02:00
puts(*world as *const str as *const u8);
}
2018-08-13 18:31:26 +02:00
//panic(&("panic msg", "abc.rs", 0, 43));
}