ttvm 0.1.8

Runtime and compiler infrastructure for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use super::*;

pub const SYS_EXIT: Byte = 0xF0;
pub const SYS_WRITE: Byte = 0xF1;

pub fn stdout() -> Byte {
    0xD0
}

pub fn stdin() -> Byte {
    0xD1
}

pub fn stderr() -> Byte {
    0xD2
}