Bump to rust nightly-2022-01-01, feature global_asm,asm->stable

This commit is contained in:
Yifan Wu 2022-01-01 01:21:30 -08:00
parent c5a0e2c9d0
commit d675f8e4ca
3 changed files with 5 additions and 3 deletions

View File

@ -1,9 +1,9 @@
#![no_std]
#![no_main]
#![feature(global_asm)]
#![feature(asm)]
#![feature(panic_info_message)]
use core::arch::global_asm;
#[macro_use]
mod console;
mod lang_items;

View File

@ -1,5 +1,7 @@
#![allow(unused)]
use core::arch::asm;
const SBI_SET_TIMER: usize = 0;
const SBI_CONSOLE_PUTCHAR: usize = 1;
const SBI_CONSOLE_GETCHAR: usize = 2;

View File

@ -1 +1 @@
nightly-2021-12-15
nightly-2022-01-01