Jump to content

infuscomus

Members
  • Posts

    139
  • Joined

  • Last visited

  • Days Won

    3

Posts posted by infuscomus

  1. @Dietmar

    I'm going to try and patch vista RTM acpi.sys again that you reported partially worked last time, this time I'll also try patching in XP ACPILoadProcess functions as well as ACPILoadFind functions. Previously I only patched ACPILoadFind function but I think ACPILoadProcess need patching too.

    This is going to be an exceedingly tedious and frustrating way of patching though.

  2. @Dietmar

    maybe try changing in my HAL

    from

    	
        mov eax, dword ptr [PicVal]
        push ebx
        push esi
        mov esi, dword ptr [SleepValues]
        mov byte ptr [HalpWakeupState.GeneralWakeupEnable], 0x1
        mov byte ptr [HalpWakeupState.RtcWakeupEnable], 0x0
        mov dword ptr [eax], 0x1
        cmp byte ptr [esi], 0x0
    	
    

    to

    	
        mov edi, dword ptr [PicVal]
        push ebx
        push esi
        mov esi, dword ptr [SleepValues]
        mov byte ptr [HalpWakeupState.GeneralWakeupEnable], 0x1
        mov byte ptr [HalpWakeupState.RtcWakeupEnable], 0x0
        mov dword ptr [edi], 0x1
        cmp byte ptr [esi], 0x0
    	

×
×
  • Create New...