applehacker Posted September 2, 2012 Share Posted September 2, 2012 I am trying to patch my M17xR4, but there are 2 parse errors I need to fix, but i don't know how. I also have couple reserved word names, I don't know what to do with those either. thanks. dsdt.zip Link to comment https://www.insanelymac.com/forum/topic/282490-need-m17xr4-dsdt-fixed-some-parse-errors/ Share on other sites More sharing options...
Rampage Dev Posted September 2, 2012 Share Posted September 2, 2012 You had many other mistakes but I was able to correct them. I also added edits that you were missing. DSDT.aml.zip 1 Link to comment https://www.insanelymac.com/forum/topic/282490-need-m17xr4-dsdt-fixed-some-parse-errors/#findComment-1849894 Share on other sites More sharing options...
pere Posted September 2, 2012 Share Posted September 2, 2012 Locate this bad code in your DSDT: Method (GOPS, 1, NotSerialized) { Store (Zero, CDSP) If (CondRefOf (HDSE)) { Store (HDSE) CDSP } Else { GETD () } Return (CDSP) } Method (SOPS, 1, NotSerialized) { If (CondRefOf (HDSE)) { HDSE Arg0 } Else { SETD (Arg0) } Return (Zero) } And replace with this one: Method (GOPS, 1, NotSerialized) { Store (Zero, CDSP) If (CondRefOf (HDSE)) { Store (HDSE, CDSP) } Else { GETD () } Return (CDSP) } Method (SOPS, 1, NotSerialized) { If (CondRefOf (HDSE)) { Store (HDSE,Arg0) } Else { SETD (Arg0) } Return (Zero) } Rampage has been faster.... i´m getting old. Link to comment https://www.insanelymac.com/forum/topic/282490-need-m17xr4-dsdt-fixed-some-parse-errors/#findComment-1849897 Share on other sites More sharing options...
applehacker Posted September 2, 2012 Author Share Posted September 2, 2012 thanks guys! Link to comment https://www.insanelymac.com/forum/topic/282490-need-m17xr4-dsdt-fixed-some-parse-errors/#findComment-1849942 Share on other sites More sharing options...
Muttley2013 Posted March 9, 2014 Share Posted March 9, 2014 You had many other mistakes but I was able to correct them. I also added edits that you were missing. DSDT.aml.zip Hello Rampage great work. i did my hackintosh without helps until now ,i have a biostar z87x 3d hifi and i ve not found any help online... I have only one error in dsdt editor compile, i attach the original dsdt, i ve patched any remark with t_x rename patch but the rest i don't know how to do could you help me?dsdt.aml.zip best regards giuseppe Link to comment https://www.insanelymac.com/forum/topic/282490-need-m17xr4-dsdt-fixed-some-parse-errors/#findComment-2002421 Share on other sites More sharing options...
Recommended Posts