Index: /trunk/src/VBox/Debugger/DBGCEmulateCodeView.cpp
===================================================================
--- /trunk/src/VBox/Debugger/DBGCEmulateCodeView.cpp	(revision 41284)
+++ /trunk/src/VBox/Debugger/DBGCEmulateCodeView.cpp	(revision 41285)
@@ -3485,9 +3485,10 @@
 
     /*
-     * Dump the I/O bitmap if present.
+     * Dump the I/O permission bitmap if present. The IOPM cannot start below offset 0x64
+     * (that applies to both 32-bit and 64-bit TSSs since their size is the same).
      */
     if (enmTssType != kTss16)
     {
-        if (offIoBitmap < cbTss)
+        if (offIoBitmap < cbTss && offIoBitmap >= 0x64)
         {
             uint32_t        cPorts      = RT_MIN((cbTss - offIoBitmap) * 8, _64K);
