Template:Ps2configrev: Difference between revisions
m (More generic is better... because we can use it with the configs extracted from ps2_gxemu.self and ps2_softemu.self too) |
m (test, not sure if there is room for this inside {{boxcodelite}}) |
||
Line 42: | Line 42: | ||
}} | }} | ||
}} | }} | ||
}}''' or newer<noinclude> | }}''' or newer (config rev. {{{1|0}}})<noinclude> | ||
== Examples == | == Examples == | ||
Line 59: | Line 59: | ||
<nowiki>{{ps2configrev|17300}}</nowiki> = {{ps2configrev|17300}}<br> | <nowiki>{{ps2configrev|17300}}</nowiki> = {{ps2configrev|17300}}<br> | ||
<nowiki>{{ps2configrev|17400}}</nowiki> = {{ps2configrev|17400}}<br> | <nowiki>{{ps2configrev|17400}}</nowiki> = {{ps2configrev|17400}}<br> | ||
<nowiki>{{ps2configrev| | <nowiki>{{ps2configrev|18000}}</nowiki> = {{ps2configrev|18000}} | ||
== Notes == | == Notes == |
Revision as of 01:40, 28 September 2021
Requires PS2 Emulator from firmware 3.70 or newer (config rev. 0)
Examples
{{ps2configrev|01337}} = Requires PS2 Emulator from firmware 3.70 or newer (config rev. 01337)
{{ps2configrev|15700}} = Requires PS2 Emulator from firmware 3.72 or newer (config rev. 15700)
{{ps2configrev|15900}} = Requires PS2 Emulator from firmware 3.73 or newer (config rev. 15900)
{{ps2configrev|16000}} = Requires PS2 Emulator from firmware 4.00 or newer (config rev. 16000)
{{ps2configrev|16200}} = Requires PS2 Emulator from firmware 4.10 or newer (config rev. 16200)
{{ps2configrev|16500}} = Requires PS2 Emulator from firmware 4.20 or newer (config rev. 16500)
{{ps2configrev|16700}} = Requires PS2 Emulator from firmware 4.25 or newer (config rev. 16700)
{{ps2configrev|16800}} = Requires PS2 Emulator from firmware 4.30 or newer (config rev. 16800)
{{ps2configrev|16900}} = Requires PS2 Emulator from firmware 4.40 or newer (config rev. 16900)
{{ps2configrev|17000}} = Requires PS2 Emulator from firmware 4.45 or newer (config rev. 17000)
{{ps2configrev|17100}} = Requires PS2 Emulator from firmware 4.50 or newer (config rev. 17100)
{{ps2configrev|17200}} = Requires PS2 Emulator from firmware 4.55 or newer (config rev. 17200)
{{ps2configrev|17300}} = Requires PS2 Emulator from firmware 4.60 or newer (config rev. 17300)
{{ps2configrev|17400}} = Requires PS2 Emulator from firmware 4.78 or newer (config rev. 17400)
{{ps2configrev|18000}} = Requires PS2 Emulator from firmware 9.99 or newer (config rev. 18000)
Notes
It could be handy to do the conversion in this sequence: 1) hexLE to hexBE, 2) hexBE to dec, 3) Math expression to compare the value in ranges
I been trying to do step 2 using this template https://en.wikipedia.org/wiki/Template:Hex2dec Is dependant of the module https://en.wikipedia.org/wiki/Module:BaseConvert Actually we dont need the template because we can call the module BaseConvert directly in a single line this way: {{#invoke:BaseConvert|16to10|FFFF}}
We already have a template named https://www.psdevwiki.com/ps3/Template:Hex2dec ... but is not doing the conversion
We already have the module BaseConvert installed in this wiki https://www.psdevwiki.com/ps3/Special:Version but doesnt seems to work, it looks we cant "#invoke" it. Im wondering if is because we need to copy also the script into https://www.psdevwiki.com/ps3/Module:BaseConvert (the page doesnt exists)
So... by now i dont know how to do steps 1 and 2 of the conversion process. And the math expressions (required for step 3) only works with decimals... so the only solution by now is to pass the decimal value to this template