Skip to content
Snippets Groups Projects
Commit 96c86181 authored by Josef Utbult's avatar Josef Utbult
Browse files

bare3_2

parent 20d5492f
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@ const APP: () = {
// notice all printing outside of the section to measure!
hprintln!("Start {:?}", start).ok();
hprintln!("End {:?}", end).ok();
hprintln!("Diff {:?}", (end - start).as_cycles()).ok();
hprintln!("Diff {:?}", Instant::duration_since(&end, start).as_cycles()).ok();
}
};
......@@ -89,7 +89,9 @@ fn wait(i: u32) {
//
// What is now the output in the Adapter Output console?
//
// ** your answer here **
// Start Instant(28537515)
// End Instant(32537531)
// Diff 4000016
//
// Commit your answers (bare3_2)
//
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment