bootloader: print gateware ident

This commit is contained in:
Sebastien Bourdeauducq 2018-03-13 00:11:25 +08:00
parent 2caeea6f25
commit 999ec40e79
1 changed files with 2 additions and 0 deletions

View File

@ -87,6 +87,8 @@ fn startup() -> bool {
return false
}
println!("Gateware ident {}", board::ident::read(&mut [0; 64]));
println!("Initializing SDRAM...");
if unsafe { board::sdram::init(Some(&mut Console)) } {