Index: boot/freeldr/freeldr/arch/amd64/pnpbios.S
===================================================================
--- boot/freeldr/freeldr/arch/amd64/pnpbios.S	(Revision 69855)
+++ boot/freeldr/freeldr/arch/amd64/pnpbios.S	(Arbeitskopie)
@@ -104,10 +104,18 @@
 PUBLIC PnpBiosGetDeviceNodeCount
 PnpBiosGetDeviceNodeCount:
 
+    /* save param-regs */
+    push rcx
+    push rdx
+
     /* Call the real mode function */
     mov bx, FNID_PnpBiosGetDeviceNodeCount
     call CallRealMode
 
+    /* restore param-regs */
+    pop rdx
+    pop rcx
+
     xor eax, eax
     mov ax, [BSS_PnpNodeSize]
     mov [rcx], eax
