3
3
#![ feature( naked_functions, asm_const) ]
4
4
#![ deny( warnings) ]
5
5
6
- use rcore_console:: * ;
6
+ #[ macro_use]
7
+ extern crate rcore_console;
8
+
7
9
use sbi_rt:: * ;
8
10
9
11
/// Supervisor 汇编入口。
@@ -28,6 +30,21 @@ unsafe extern "C" fn _start() -> ! {
28
30
)
29
31
}
30
32
33
+ /// 使用 `console` 输出的 Supervisor 裸机程序。
34
+ ///
35
+ /// 测试各种日志和输出后关机。
36
+ extern "C" fn rust_main ( ) -> ! {
37
+ // 初始化 `console`
38
+ rcore_console:: init_console ( & Console ) ;
39
+ // 设置日志级别
40
+ rcore_console:: set_log_level ( option_env ! ( "LOG" ) ) ;
41
+ // 测试各种打印
42
+ rcore_console:: test_log ( ) ;
43
+
44
+ system_reset ( Shutdown , NoReason ) ;
45
+ unreachable ! ( )
46
+ }
47
+
31
48
/// 将传给 `console` 的控制台对象。
32
49
///
33
50
/// 这是一个 Unit struct,它不需要空间。否则需要传一个 static 对象。
@@ -41,26 +58,6 @@ impl rcore_console::Console for Console {
41
58
}
42
59
}
43
60
44
- /// 使用 `console` 输出的 Supervisor 裸机程序。
45
- ///
46
- /// 测试各种日志和输出后关机。
47
- extern "C" fn rust_main ( ) -> ! {
48
- // 初始化 console
49
- init_console ( & Console ) ;
50
- // 设置总的日志级别
51
- log:: set_max_level ( log:: LevelFilter :: Trace ) ;
52
-
53
- println ! ( "[PRINT] Hello, world!" ) ;
54
- log:: trace!( "Hello, world!" ) ;
55
- log:: debug!( "Hello, world!" ) ;
56
- log:: info!( "Hello, world!" ) ;
57
- log:: warn!( "Hello, world!" ) ;
58
- log:: error!( "Hello, world!" ) ;
59
-
60
- system_reset ( Shutdown , NoReason ) ;
61
- unreachable ! ( )
62
- }
63
-
64
61
/// Rust 异常处理函数,以异常方式关机。
65
62
#[ panic_handler]
66
63
fn panic ( info : & core:: panic:: PanicInfo ) -> ! {
0 commit comments