Skip to content

Commit 3b2e41d

Browse files
committed
docs: update CHANGELOG.md
Signed-off-by: YdrMaster <ydrml@hotmail.com>
1 parent d4878d9 commit 3b2e41d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
2424
### Fixed
2525

2626
- Xtask will now print error when system does not have qemu installed
27+
- Fix dtb parsing for qemu 7.2
2728

2829
## [0.1.1] - 2022-03-23
2930

test-kernel/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ unsafe extern "C" fn _start(hartid: usize, device_tree_paddr: usize) -> ! {
2626
static mut STACK: [u8; STACK_SIZE] = [0u8; STACK_SIZE];
2727

2828
asm!(
29-
"la sp, {stack} + {stack_size}",
29+
"la sp, {stack} + {stack_size}",
3030
"j {main}",
3131
stack_size = const STACK_SIZE,
3232
stack = sym STACK,

0 commit comments

Comments
 (0)