justxuewei / project-rCore

Yet another rCore implementation by justxuewei

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Project rCore

Yet another rCore implementation by justxuewei, the original version you may refer to rcore-os/rCore-Tutorial-v3.

Contents

In this repo:

Reviews (in chinese):

Tips

VSCode configs for riscv64 target to avoid #![no_std] warning.

// ref: https://github.com/rust-lang/vscode-rust/issues/729
// for rust extenstion:
{
    "rust.target": "riscv64gc-unknown-none-elf",
    "rust.all_targets": false
}

// for rust-analyzer extenstion:
{
    "rust-analyzer.cargo.target": "riscv64gc-unknown-none-elf",
    "rust-analyzer.checkOnSave.allTargets": false
}

Recommended extensions for VSCode

  • rust-analyzer
  • GitLens
  • RISC-V Support
  • Markdown All in One
  • Makefile Tools

About

Yet another rCore implementation by justxuewei

License:MIT License


Languages

Language:Rust 96.9%Language:Assembly 1.7%Language:Makefile 1.4%