Skip to content
View Cy6er7um's full-sized avatar
๐Ÿฑ
Nya~
๐Ÿฑ
Nya~

Organizations

@EpicGames @FastGitORG @Mfuns-cn @HMUniversity @RBQUniversity @ShelterLab @fa-org @QomegaLang @NyahLab
Block or Report

Block or report Cy6er7um

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this userโ€™s behavior. Learn more about reporting abuse.

Report abuse
Cy6er7um/README.md

๐Ÿ‘‹ เฎ Cy6er7um เฎ GitHub Followers Twitter Followers

#![no_std] // This is a minimal kernel.
#![no_main]

use core::panic::PanicInfo;

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

#[no_mangle]
pub extern "C" fn _start() -> ! {
    let message = "Hi, I am Cy6er7um!"; // โ˜ฌ
    let buffer = 0xb8000 as *mut u8;
    for (i, &b) in message.as_bytes().iter().enumerate() {
        unsafe { // โ˜ˆ
            *buffer.offset(i as isize * 2) = b;
            *buffer.offset(i as isize * 2 + 1) = 0xb;
        }
    }
    loop {}
}

๐Ÿ“• โ€ Environment โ€

๐Ÿ“ƒ ใ€„ Analysis ใ€„

๐Ÿ“ž โ… Contact โ…

Github: @Cy6er7um
Twitter: @Cy6er7um
Mail: [email protected]

โ˜ฌ โ˜ฌ

Pinned

  1. carbon-language/carbon-lang carbon-language/carbon-lang Public

    Carbon Language's main repository: documents, design, implementation, and related tools. (NOTE: Carbon Language is experimental; see README)

    C++ 32.3k 1.5k

  2. bytecodealliance/cranelift-jit-demo bytecodealliance/cranelift-jit-demo Public

    JIT compiler and runtime for a toy language, using Cranelift

    Rust 609 57

  3. RustPython/RustPython RustPython/RustPython Public

    A Python Interpreter written in Rust

    Rust 17.7k 1.2k

  4. fa-org/fa fa-org/fa Public

    fa ่ฏญ่จ€็ผ–่ฏ‘ๅ™จ

    C++ 50 8

  5. Xie-Jason/GloomScript Xie-Jason/GloomScript Public

    GloomScript Interpreter implemented in Rust

    Rust 48 8