05-20-2021, 10:00 AM
Hello. I have a troubles with debugging my kernel. Kernel hasn't pass self-testingĀ and I can't find error in computed values. If I write simply
I don't get anything in console and log output. How should it look like? Where does printf print?
Code:
const u32 digest32[8] = { ctx.h[0], ctx.h[1], ctx.h[2], ctx.h[3], ctx.h[4], ctx.h[5], ctx.h[6], ctx.h[7] };
printf ("%08x\n", digest32);
I don't get anything in console and log output. How should it look like? Where does printf print?