| 74 | } |
| 75 | |
| 76 | void main(void) |
| 77 | { |
| 78 | uint64_t base_timestamp = 0; |
| 79 | |
| 80 | init_timer(); |
| 81 | |
| 82 | if (CONFIG(COLLECT_TIMESTAMPS)) |
| 83 | base_timestamp = timestamp_get(); |
| 84 | |
| 85 | bootblock_main_with_timestamp(base_timestamp, NULL, 0); |
| 86 | } |
| 87 | |
| 88 | #if CONFIG(COMPRESS_BOOTBLOCK) |
| 89 | /* |
nothing calls this directly
no test coverage detected