Add a recogniseable message when the platform hits an assert

Simply rebooting doesn't give much of a clue in the logs.

Signed-off-by: James Bottomley <JBottomley@Parallels.com>
diff --git a/QuarkSocPkg/Override/MdePkg/Library/BaseLib/CpuDeadLoop.c b/QuarkSocPkg/Override/MdePkg/Library/BaseLib/CpuDeadLoop.c
index 2653ae5..7895031 100755
--- a/QuarkSocPkg/Override/MdePkg/Library/BaseLib/CpuDeadLoop.c
+++ b/QuarkSocPkg/Override/MdePkg/Library/BaseLib/CpuDeadLoop.c
@@ -63,6 +63,7 @@
 {

   volatile UINTN  Index;

 

+  DEBUG((EFI_D_ERROR,"\n\nCPU DEAD LOOP\n\n"));
   OemInitiateRecovery();

   for (Index = 0; Index == 0;);

 }