Skip to content

justxuewei/project-rCore

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

84 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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