mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-18 08:06:32 +00:00
🔧 修正一些表达
This commit is contained in:
@ -50,11 +50,11 @@ void test_printk()
|
||||
printk("2022-01-01\tJohn\t95\n");
|
||||
|
||||
//测试输出八进制
|
||||
printk("\nTest base 8 : %d --> %o\n", 255, 255);
|
||||
printk("\nTest base 8 : %d --> %#o\n", 255, 255);
|
||||
|
||||
//测试输出十六进制
|
||||
printk("\nTest base 16 : %d --> %x\n", 255, 255);
|
||||
printk("\nTest base 16 : %d --> %X\n", 255, 255);
|
||||
printk("\nTest base 16 : %d --> %#x\n", 255, 255);
|
||||
printk("\nTest base 16 : %d --> %#X\n", 255, 255);
|
||||
}
|
||||
|
||||
void init()
|
||||
|
Reference in New Issue
Block a user