Jump to content

bloodfor

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by bloodfor

  1. I'm doing it for windows 10 and the file won't open =(( Added in 39 minutes : C:\dsdt>iasl -ve dsdt-modified.dsl Intel ACPI Component Architecture ASL+ Optimizing Compiler version 20161222-32 Copyright (c) 2000 - 2016 Intel Corporation Compiler aborting due to parser-detected syntax error(s) dsdt-modified.dsl 19417: OperationRegion (PXVD, SystemMemory, Local0, 0x04) Error 6126 - ^ syntax error, unexpected PARSEOP_OPERATIONREGION dsdt-modified.dsl 19721: 0x0548 = (MMTB () + Arg0) Error 6126 - ^ syntax error, unexpected PARSEOP_EXP_EQUALS dsdt-modified.dsl 19723: OperationRegion (PXVD, SystemMemory, Local0, 0x08) Error 6126 - ^ syntax error, unexpected PARSEOP_OPERATIONREGION dsdt-modified.dsl 19777: OperationRegion (PXVD, SystemMemory, Local1, 0x0550) Error 6126 - ^ syntax error, unexpected PARSEOP_OPERATIONREGION dsdt-modified.dsl 19859: 0x0544 = (MMTB () + Arg0) Error 6126 - ^ syntax error, unexpected PARSEOP_EXP_EQUALS dsdt-modified.dsl 19861: OperationRegion (PXVD, SystemMemory, Local0, 0x08) Error 6126 - ^ syntax error, unexpected PARSEOP_OPERATIONREGION dsdt-modified.dsl 20022: OSUP (Local2) Error 6126 - ^ syntax error, unexpected PARSEOP_NAMESEG ASL Input: dsdt-modified.dsl - 41182 lines, 1287458 bytes, 20399 keywords Compilation complete. 7 Errors, 0 Warnings, 0 Remarks, 0 Optimizations https://mega.nz/#!uwQBWC7b!vT4tk-sisi25ecBuGAPk8EUUHpz7HNJMGI9bGzmXtjk I did, but it gives an error
  2. can't open content =((( Converting to .asl extension dsdt.aml convert to dsdt.asl
  3. Hello Help me large memory Hp 250 g6 iii. With Notepad++, open the resultant c:\dsdt\dsdt-modified.dsl file and search for ResourceProducer. Beneath it will be a series of “DWordMemory” resource entries. Under the last DWordMemory entry in that area, typically above the _CRS method, add a ‘QWordMemory’ (64-bit) entry as shown in red below. The range chosen is in the 36-bit range (< 64GB) to maintain compatibility with PAE-capable 32-bit Windows. A location above 48GB was chosen to alleviate issues with 32GB equipped systems. Here we use between 48.5GB to 56.25GB. Once systems start shipping with 64GB of RAM, this will need to be revised to use a 64-bit address. DWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite, 0x00000000, // Granularity 0x000A0000, // Range Minimum 0x000BFFFF, // Range Maximum 0x00000000, // Translation Offset 0x00020000, // Length ,, , AddressRangeMemory, TypeStatic) QWordMemory (ResourceProducer, PosDecode, MinFixed, MaxFixed, Cacheable, ReadWrite, 0x0000000000000000, // Granularity 0x0000000C20000000, // Range Minimum, set it to 48.5GB 0x0000000E0FFFFFFF, // Range Maximum, set it to 56.25GB 0x0000000000000000, // Translation Offset 0x00000001F0000000, // Length calculated by Range Max - Range Min. ,, , AddressRangeMemory, TypeStatic) }) Method (_CRS, 0, Serialized) // _CRS: Current Resource Settings can you add dsdt.aml I couldn't do some sort of I would be very grateful if you help me Added in 5 minutes 8 seconds:
×
×
  • Create New...