--- np2/i386c/ia32/ia32.c 2011/12/21 18:07:57 1.24 +++ np2/i386c/ia32/ia32.c 2012/01/08 18:33:58 1.25 @@ -146,9 +146,9 @@ change_pm(BOOL onoff) CPU_STAT_SREG(i).dpl = 0; } #endif - VERBOSE(("Entering to Protected-Mode...")); + VERBOSE(("change_pm: Entering to Protected-Mode...")); } else { - VERBOSE(("Leaveing from Protected-Mode...")); + VERBOSE(("change_pm: Leaveing from Protected-Mode...")); } CPU_INST_OP32 = CPU_INST_AS32 = @@ -164,9 +164,9 @@ change_pg(BOOL onoff) { if (onoff) { - VERBOSE(("Entering to Paging-Mode...")); + VERBOSE(("change_pg: Entering to Paging-Mode...")); } else { - VERBOSE(("Leaveing from Paging-Mode...")); + VERBOSE(("change_pg: Leaveing from Paging-Mode...")); } CPU_STAT_PAGING = onoff; @@ -179,7 +179,7 @@ change_vm(BOOL onoff) CPU_STAT_VM86 = onoff; if (onoff) { - VERBOSE(("Entering to Virtual-8086-Mode...")); + VERBOSE(("change_vm: Entering to Virtual-8086-Mode...")); for (i = 0; i < CPU_SEGREG_NUM; i++) { CPU_STAT_SREGLIMIT(i) = 0xffff; LOAD_SEGREG(i, CPU_REGS_SREG(i)); @@ -190,7 +190,7 @@ change_vm(BOOL onoff) CPU_STAT_SS32 = 0; set_cpl(3); } else { - VERBOSE(("Leaveing from Virtual-8086-Mode...")); + VERBOSE(("change_vm: Leaveing from Virtual-8086-Mode...")); } }