Editing VSMX
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 1: | Line 1: | ||
= Description = | = Description = | ||
Virtual Script Machine Instructions (VSMX) | Virtual Script Machine Instructions (VSMX) file (filename extension .jsx, a .js compiled) | ||
*http://endlessparadigm.com/forum/showthread.php?tid=21485 | History: | ||
*http://endlessparadigm.com/forum/showthread.php?tid=21485 | |||
[[Rcomage]] | [[Rcomage]] can compile/decompile .jsx (VSMX) <=> .JS (need to change the VSMX version at offset 0x04 to 01 (PSP?) instead of 02 (PS3?) | ||
<pre> | |||
but it's very buggy and usually doesn't work right | |||
</pre> | |||
*VSMX files are used on: | *VSMX files are used on: | ||
**PSP | **PSP (inside RCO's from video/music UMDs, and two lftv firmware RCO's in flash0/vsh/resource/...) | ||
**PS3 | **PS3 ([[Rich_Appearance_Format_(RAF)|inside RAF's]]: on [[Coldboot.raf]], [[Themes (.p3t)|PS3 themes]] animated) and some PS3 Games? | ||
**PSVita & PS4 (unknown | **PSVita & PS4 (unknown) | ||
= VSMX Structure = | = VSMX Structure = | ||
== Header == | == Header == | ||
Line 62: | Line 64: | ||
{| class="wikitable" | {| class="wikitable" | ||
|- | |- | ||
! OpCode<BR />(1 byte) !! Args<BR />(1 byte) !! Unkown<BR />(1 byte) !! Vars<BR />(1 byte) !! Value<BR />(4 bytes) !! Mnemonics<BR />(official) !! Mnemonics<BR />(rcomage) !! | ! OpCode<BR />(1 byte) !! Args<BR />(1 byte) !! Unkown<BR />(1 byte) !! Vars<BR />(1 byte) !! Value<BR />(4 bytes) !! Mnemonics<BR />(official) !! Mnemonics<BR />(rcomage) !! group !! Notes | ||
|- | |- | ||
| 0x00 || {{no}} || {{no}} || {{no}} || {{no}} || NOP || UNKNOWN_0 || - || - | |||
|- | |- | ||
| | | 0x01 || {{no}} || {{no}} || {{no}} || {{no}} || ASSGN || ASSIGN || Assignment Operators || - | ||
|- | |- | ||
| | | 0x02 || {{no}} || {{no}} || {{no}} || {{no}} || ADD || ADD || Arithmetic Operators || - | ||
|- | |- | ||
| 0x03 || {{no}} || {{no}} || {{no}} || {{no}} || SUB || SUBTRACT || Arithmetic Operators || - | |||
|- | |- | ||
| | | 0x04 || {{no}} || {{no}} || {{no}} || {{no}} || MUL || MULTIPLY || Arithmetic Operators || - | ||
|- | |- | ||
| | | 0x05 || {{no}} || {{no}} || {{no}} || {{no}} || DIV || DIVIDE || Arithmetic Operators || - | ||
|- | |- | ||
| | | 0x06 || {{no}} || {{no}} || {{no}} || {{no}} || MOD || MODULUS || Arithmetic Operators || - | ||
|- | |- | ||
| | | 0x07 || {{no}} || {{no}} || {{no}} || {{no}} || TO_NUMBER || POSITIVE || - || - | ||
|- | |- | ||
| | | 0x08 || {{no}} || {{no}} || {{no}} || {{no}} || CSIGN || NEGATE || - || - | ||
|- | |- | ||
| | | 0x09 || {{no}} || {{no}} || {{no}} || {{no}} || NOT || NOT || - || - | ||
|- | |- | ||
| | | 0x0A || {{no}} || {{no}} || {{no}} || {{no}} || INC || PRE_INCREMENT || Arithmetic Operators || - | ||
|- | |- | ||
| | | 0x0B || {{no}} || {{no}} || {{no}} || {{no}} || DEC || PRE_DECREMENT || Arithmetic Operators || - | ||
|- | |- | ||
| | | 0x0C || {{no}} || {{no}} || {{no}} || {{no}} || POST_INC || INCREMENT || Arithmetic Operators || - | ||
|- | |- | ||
| | | 0x0D || {{no}} || {{no}} || {{no}} || {{no}} || POST_DEC || DECREMENT || Arithmetic Operators || - | ||
|- | |- | ||
| | | colspan="9" {{cellcolors|grey}} | ||
|- | |- | ||
| | | 0x0E || {{no}} || {{no}} || {{no}} || {{no}} || CMPEQ || TEST_EQUAL || Compare Operators || - | ||
|- | |- | ||
| 0x0F || {{no}} || {{no}} || {{no}} || {{no}} || CMPNEQ || TEST_NOT_EQUAL || Compare Operators || - | |||
|- | |- | ||
| | | 0x10 || {{no}} || {{no}} || {{no}} || {{no}} || CMPSEQ || TEST_IDENTITY || Compare Operators || - | ||
|- | |- | ||
| | | 0x11 || {{no}} || {{no}} || {{no}} || {{no}} || CMPSNEQ || TEST_NON_IDENTITY || Compare Operators || - | ||
|- | |- | ||
| | | 0x12 || {{no}} || {{no}} || {{no}} || {{no}} || CMPLT || TEST_LESS_THAN || Compare Operators || - | ||
|- | |- | ||
| | | 0x13 || {{no}} || {{no}} || {{no}} || {{no}} || CMPLE || TEST_LESS_EQUAL_THAN || Compare Operators || - | ||
|- | |- | ||
| | | 0x14 || {{no}} || {{no}} || {{no}} || {{no}} || CMPGE || TEST_MORE_EQUAL_THAN || Compare Operators || - | ||
|- | |- | ||
| | | 0x15 || {{no}} || {{no}} || {{no}} || {{no}} || CMPGT || TEST_MORE_THAN || Compare Operators || - | ||
|- | |- | ||
| | | colspan="9" {{cellcolors|grey}} | ||
|- | |- | ||
| | | 0x16 || {{no}} || {{no}} || {{no}} || {{no}} || INSTANCEOF || UNKNOWN_16 || - || - | ||
|- | |- | ||
| 0x17 || {{no}} || {{no}} || {{no}} || {{no}} || IN || UNKNOWN_17 || - || - | |||
|- | |- | ||
| | | 0x18 || {{no}} || {{no}} || {{no}} || {{no}} || TYPEOF || TYPEOF || - || - | ||
|- | |- | ||
| | | 0x19 || {{no}} || {{no}} || {{no}} || {{no}} || BIT_AND || BINARY_AND || Bitwise Operators || - | ||
|- | |- | ||
| | | 0x1A || {{no}} || {{no}} || {{no}} || {{no}} || BIT_XOR || BINARY_XOR || Bitwise Operators || - | ||
|- | |- | ||
| | | 0x1B || {{no}} || {{no}} || {{no}} || {{no}} || BIT_OR || BINARY_OR || Bitwise Operators || - | ||
|- | |- | ||
| | | 0x1C || {{no}} || {{no}} || {{no}} || {{no}} || BIT_NOT || BINARY_NOT || Bitwise Operators || - | ||
|- | |- | ||
| | | 0x1D || {{no}} || {{no}} || {{no}} || {{no}} || LSHIFT || LSHIFT || Bitwise Operators || - | ||
|- | |- | ||
| | | 0x1E || {{no}} || {{no}} || {{no}} || {{no}} || S_RSHIFT || RSHIFT || Bitwise Operators || - | ||
|- | |- | ||
| | | 0x1F || {{no}} || {{no}} || {{no}} || {{no}} || U_RSHIFT || UNSIGNED_RSHIFT || Bitwise Operators || - | ||
|- | |- | ||
| | | colspan="9" {{cellcolors|grey}} | ||
|- | |- | ||
| | | 0x20 || {{no}} || {{no}} || {{no}} || {{no}} || COPY || STACK_PUSH || - || - | ||
|- | |- | ||
| 0x21 || {{no}} || {{no}} || {{no}} || {{no}} || SWAP || UNKNOWN_21 || - || - | |||
|- | |- | ||
| | | 0x22 || {{no}} || {{no}} || {{no}} || {{no}} || REMOVE || END_STATEMENT || - || - | ||
|- | |- | ||
| | | colspan="9" {{cellcolors|grey}} | ||
|- | |- | ||
| | | 0x23 || {{no}} || {{no}} || {{no}} || {{yes}} || PUSH_UNDEFINED || CONST_NULL || Data Types || - | ||
|- | |- | ||
| 0x24 || {{no}} || {{no}} || {{no}} || {{yes}} || PUSH_NULL || CONST_EMPTY_ARRAY || Data Types || - | |||
|- | |- | ||
| | | 0x25 || {{no}} || {{no}} || {{no}} || {{yes}} || PUSH_BOOL || CONST_BOOL || Data Types || - | ||
|- | |- | ||
| | | 0x26 || {{no}} || {{no}} || {{no}} || {{yes}} || PUSH_INT || CONST_INT || Data Types || - | ||
|- | |- | ||
| | | 0x27 || {{no}} || {{no}} || {{no}} || {{yes}} || PUSH_FLOAT || CONST_FLOAT || Data Types || - | ||
|- | |- | ||
| | | 0x28 || {{no}} || {{no}} || {{no}} || {{yes}} || PUSH_STRING || CONST_STRING || Data Types || - | ||
|- | |- | ||
| | | 0x29 || {{no}} || {{no}} || {{no}} || {{yes}} || PUSH_OBJECT || CONST_OBJECT || - || - | ||
|- | |- | ||
| | | 0x2A || {{yes}} || {{no}} || {{yes}} || {{yes}} || PUSH_FUNC || FUNCTION || - || - | ||
|- | |- | ||
| 0x2B || {{no}} || {{no}} || {{no}} || {{yes}} || PUSH_ARRAY || CONST_ARRAY || - || - | |||
|- | |- | ||
| | | 0x2C || {{no}} || {{no}} || {{no}} || {{yes}} || PUSH_THIS || THIS_OBJECT || - || - | ||
|- | |- | ||
| | | 0x2D || {{no}} || {{no}} || {{no}} || {{yes}} || PUSH_LOCAL || UNNAMED_VARIABLE || - || - | ||
|- | |- | ||
| | | 0x2E || {{no}} || {{no}} || {{no}} || {{yes}} || PUSH_GLOBAL || NAME || - || - | ||
|- | |- | ||
| | | colspan="9" {{cellcolors|grey}} | ||
|- | |- | ||
| | | 0x2F || {{no}} || {{no}} || {{no}} || {{yes}} || GETATTR || PROPERTY || - || - | ||
|- | |- | ||
| | | 0x30 || {{no}} || {{no}} || {{no}} || {{yes}} || GETATTR_KEEPOBJ || METHOD || - || - | ||
|- | |- | ||
| 0x31 || {{no}} || {{no}} || {{no}} || {{yes}} || SETATTR || SET || - || - | |||
|- | |- | ||
| | | 0x32 || {{no}} || {{no}} || {{no}} || {{yes}} || DELATTR || UNSET || - || - | ||
|- | |- | ||
| | | 0x33 || {{no}} || {{no}} || {{no}} || {{yes}} || APPEND_ATTR || OBJECT_ADD_ATTRIBUTE || - || - | ||
|- | |- | ||
| | | colspan="9" {{cellcolors|grey}} | ||
|- | |- | ||
| | | 0x34 || {{no}} || {{no}} || {{no}} || {{yes}} || GETITEM || ARRAY_INDEX || - || - | ||
|- | |- | ||
| | | 0x35 || {{no}} || {{no}} || {{no}} || {{yes}} || GETITEM_KEEPOBJ || UNKNOWN_35 || - || - | ||
|- | |- | ||
| 0x36 || {{no}} || {{no}} || {{no}} || {{yes}} || SETITEM || ARRAY_INDEX_ASSIGN || - || - | |||
|- | |- | ||
| | | 0x37 || {{no}} || {{no}} || {{no}} || {{yes}} || DELITEM || UNKNOWN_37 || - || - | ||
|- | |- | ||
| | | 0x38 || {{no}} || {{no}} || {{no}} || {{yes}} || APPEND_ITEM || ARRAY_PUSH || - || - | ||
|- | |- | ||
| | | colspan="9" {{cellcolors|grey}} | ||
|- | |- | ||
| | | 0x39 || {{no}} || {{no}} || {{no}} || {{yes}} || JUMP || JUMP || - || - | ||
|- | |- | ||
| | | 0x3A || {{no}} || {{no}} || {{no}} || {{yes}} || JUMPT || JUMP_IF_TRUE || - || - | ||
|- | |- | ||
| 0x3B || {{no}} || {{no}} || {{no}} || {{yes}} || JUMPF || JUMP_IF_FALSE || - || - | |||
|- | |- | ||
| | | colspan="9" {{cellcolors|grey}} | ||
|- | |- | ||
| | | 0x3C || {{no}} || {{no}} || {{no}} || {{no}} || CALL_FUNC || CALL_FUNCTION || - || - | ||
|- | |- | ||
| | | 0x3D || {{no}} || {{no}} || {{no}} || {{no}} || CALL_METHOD || CALL_METHOD || - || - | ||
|- | |- | ||
| 0x3E || {{no}} || {{no}} || {{no}} || {{yes}} || CALL_CONSTRUCTOR || CALL_INBUILT / CALL_NEW <!-- different versions of rcomage --> || - || - | |||
|- | |- | ||
| | | colspan="9" {{cellcolors|grey}} | ||
|- | |- | ||
| | | 0x3F || {{no}} || {{no}} || {{no}} || {{no}} || RET || RETURN || - || - | ||
|- | |- | ||
| | | 0x40 || {{no}} || {{no}} || {{no}} || {{no}} || THROW || UNKNOWN_40 || - || - | ||
|- | |- | ||
| colspan="9" {{cellcolors|grey}} | |||
|- | |- | ||
| | | 0x41 || {{no}} || {{no}} || {{no}} || {{no}} || TRYBLK_IN || UNKNOWN_41 || - || - | ||
|- | |- | ||
| | | 0x42 || {{no}} || {{no}} || {{no}} || {{no}} || TRYBLK_OUT || UNKNOWN_42 || - || - | ||
|- | |- | ||
| 0x43 || {{no}} || {{no}} || {{no}} || {{no}} || CATCH_FINALLYBLK_IN || UNKNOWN_43 || - || - | |||
|- | |- | ||
| | | 0x44 || {{no}} || {{no}} || {{no}} || {{no}} || CATCH_FINALLYBLK_OUT || UNKNOWN_44 || - || - | ||
|- | |- | ||
| | | colspan="9" {{cellcolors|grey}} | ||
|- | |- | ||
| | | 0x45 || {{no}} || {{no}} || {{no}} || {{no}} || HALT || END_SCRIPT || - || - | ||
|- | |- | ||
| | | colspan="9" {{cellcolors|grey}} | ||
|- | |- | ||
| 0x46 || {{no}} || {{no}} || {{no}} || {{no}} || DEBUG_FILE || DEBUG_FILE || - || - | |||
|- | |- | ||
| 0x47 || {{no}} || {{no}} || {{no}} || {{no}} || DEBUG_LINE || DEBUG_LINE || - || - | |||
| 0x47 || {{no}} || {{no}} || {{no}} || {{no}} || DEBUG_LINE || DEBUG_LINE || | |||
|- | |- | ||
! colspan="9" {{cellcolors|grey|white}} VSMX v2 (new opcodes for PS3) ? | ! colspan="9" {{cellcolors|grey|white}} VSMX v2 (new opcodes for PS3) ? | ||
|- | |- | ||
| 0x48 || {{no}} || {{no}} || {{no}} || {{yes}} || GETITEM_KEEPOBJNAME || UNKNOWN_48 || | | 0x48 || {{no}} || {{no}} || {{no}} || {{yes}} || GETITEM_KEEPOBJNAME || UNKNOWN_48 || - || - | ||
|- | |- | ||
| 0x49 || {{no}} || {{no}} || {{no}} || {{yes}} || PUSH_VECTOR || UNKNOWN_49 / MAKE_FLOAT_ARRAY <!-- different versions of rcomage --> || | | 0x49 || {{no}} || {{no}} || {{no}} || {{yes}} || PUSH_VECTOR || UNKNOWN_49 / MAKE_FLOAT_ARRAY <!-- different versions of rcomage --> || Data Types || - | ||
|- | |- | ||
| 0x4A || {{no}} || {{no}} || {{no}} || {{yes}} || GET_VECTOR_ELEMENT || UNKNOWN_4a || | | 0x4A || {{no}} || {{no}} || {{no}} || {{yes}} || GET_VECTOR_ELEMENT || UNKNOWN_4a || - || - | ||
|- | |- | ||
| 0x4B || {{no}} || {{no}} || {{no}} || {{yes}} || GET_VECTOR_ELEMENT_KEEPVECTOR || UNKNOWN_4b || | | 0x4B || {{no}} || {{no}} || {{no}} || {{yes}} || GET_VECTOR_ELEMENT_KEEPVECTOR || UNKNOWN_4b || - || - | ||
|- | |- | ||
| 0x4C || {{no}} || {{no}} || {{no}} || {{yes}} || ASSGN_VECTOR_ELEMENT || UNKNOWN_4c || | | 0x4C || {{no}} || {{no}} || {{no}} || {{yes}} || ASSGN_VECTOR_ELEMENT || UNKNOWN_4c || - || - | ||
|- | |- | ||
| 0x4D || {{no}} || {{no}} || {{yes}} || {{yes}} || SETATTR_VECTOR_ELEMENT || UNKNOWN_4d || - | | 0x4D || {{no}} || {{no}} || {{yes}} || {{yes}} || SETATTR_VECTOR_ELEMENT || UNKNOWN_4d || - || byte 4 is an identifyer from a vector (x,y,z) (r,g,b,a) etc... | ||
|- | |- | ||
| 0x4E || {{no}} || {{no}} || {{no}} || {{yes}} || SETITEM_VECTOR_ELEMENT || UNKNOWN_4e || | | 0x4E || {{no}} || {{no}} || {{no}} || {{yes}} || SETITEM_VECTOR_ELEMENT || UNKNOWN_4e || - || <!--byte 4 uses a vector identifyer--> | ||
|- | |- | ||
|} | |} | ||
Line 307: | Line 303: | ||
|- | |- | ||
| 0x19 || BIT_AND || & || AND | | 0x19 || BIT_AND || & || AND | ||
|- | |- | ||
| 0x1B || BIT_OR || <nowiki>|</nowiki> || OR | | 0x1B || BIT_OR || <nowiki>|</nowiki> || OR | ||
|- | |- | ||
| 0x1C || BIT_NOT || ~ || NOT | | 0x1C || BIT_NOT || ~ || NOT | ||
|- | |||
| 0x1A || BIT_XOR || ^ || XOR | |||
|- | |- | ||
| 0x1D || LSHIFT || << || Left Shift | | 0x1D || LSHIFT || << || Left Shift | ||
Line 335: | Line 331: | ||
|- | |- | ||
| 0x0E || CMPEQ || == || Equality | | 0x0E || CMPEQ || == || Equality | ||
|- | |||
| 0x10 || CMPSEQ || === || Strict Equal value and equal type | |||
|- | |- | ||
| 0x0F || CMPNEQ || != || Inequality | | 0x0F || CMPNEQ || != || Inequality | ||
|- | |- | ||
| | | 0x11 || CMPSNEQ || !== || Strict not equal value or not equal type | ||
|- | |||
| 0x15 || CMPGT || > || Greater Than | |||
|- | |- | ||
| | | 0x14 || CMPGE || >= || Greater Than or Equal To | ||
|- | |- | ||
| 0x12 || CMPLT || < || Less Than | | 0x12 || CMPLT || < || Less Than | ||
|- | |- | ||
| 0x13 || CMPLE || <= || Less Than or Equal To | | 0x13 || CMPLE || <= || Less Than or Equal To | ||
|- | |- | ||
|} | |} | ||
Line 384: | Line 380: | ||
This is an example of the decodification and decompilation made with the VSMX script contained inside [[coldboot.raf]]. The decompilation has been made by hand because the vsmx decompiler by ZiNgA BuRgA doesnt supports vectors and crashes, the purpose is to serve as an explain of how the opcodes works, the features that was added to VSMX v2 format for PS3, and as an overall explain of how to decompile other VSMX files | This is an example of the decodification and decompilation made with the VSMX script contained inside [[coldboot.raf]]. The decompilation has been made by hand because the vsmx decompiler by ZiNgA BuRgA doesnt supports vectors and crashes, the purpose is to serve as an explain of how the opcodes works, the features that was added to VSMX v2 format for PS3, and as an overall explain of how to decompile other VSMX files | ||
The file can be saved as .js and compiled directlly (there is no need to remove the comments), for a better | The file can be saved as .js and compiled directlly (there is no need to remove the comments), for a better view of the decompiled code without the comments in [[PlayStation JavaScript]] format see [[coldboot.raf]] page | ||
*Form left to right: | *Form left to right: | ||
Line 394: | Line 390: | ||
**'''DECOMPILED PSJS CODE''' - The source code in [[PlayStation JavaScript]] format ready to compile, it will generate a coldboot.jsx exactly like the one extracted from coldboot.raf by the [[CXML Containers|CXML decompiler tool]] | **'''DECOMPILED PSJS CODE''' - The source code in [[PlayStation JavaScript]] format ready to compile, it will generate a coldboot.jsx exactly like the one extracted from coldboot.raf by the [[CXML Containers|CXML decompiler tool]] | ||
{{Boxcode| | {{Boxcode|content=<syntaxhighlight lang="javascript"> | ||
//--------------------------------------------------------------------------------------------------------------------- | //--------------------------------------------------------------------------------------------------------------------- | ||
// VSMX v2 Decompilation Sample (coldboot.raf PS3). Decompiled step by step from VSMX opcodes to PSJS code by sandungas | // VSMX v2 Decompilation Sample (coldboot.raf PS3). Decompiled step by step from VSMX opcodes to PSJS code by sandungas | ||
Line 618: | Line 614: | ||
/* 210 - 2E000000 1C000000 - PUSH_GLOBAL sd_scale *///sd_scale | /* 210 - 2E000000 1C000000 - PUSH_GLOBAL sd_scale *///sd_scale | ||
/* 211 - 31000000 03000000 - SETATTR scale *///footer.scale = sd_scale | /* 211 - 31000000 03000000 - SETATTR scale *///footer.scale = sd_scale | ||
/* 212 - 22000000 00000000 - REMOVE */ | /* 212 - 22000000 00000000 - REMOVE */ footer.scale = sd_scale; | ||
/* 213 - 39000000 F9000000 - JUMP 249 */ } else { | /* 213 - 39000000 F9000000 - JUMP 249 */} else { | ||
/* 214 - 2E000000 1B000000 - PUSH_GLOBAL sd_offset_x *///sd_offset_x | /* 214 - 2E000000 1B000000 - PUSH_GLOBAL sd_offset_x *///sd_offset_x | ||
/* 215 - 27000000 00000040 - PUSH_FLOAT 2.0 *///2.0 | /* 215 - 27000000 00000040 - PUSH_FLOAT 2.0 *///2.0 | ||
/* 216 - 01000000 00000000 - ASSGN *///sd_offset_x = 2.0 | /* 216 - 01000000 00000000 - ASSGN *///sd_offset_x = 2.0 | ||
/* 217 - 22000000 00000000 - REMOVE */ | /* 217 - 22000000 00000000 - REMOVE */ sd_offset_x = 2.0; | ||
/* 218 - 2E000000 14000000 - PUSH_GLOBAL logo *///logo | /* 218 - 2E000000 14000000 - PUSH_GLOBAL logo *///logo | ||
/* 219 - 2E000000 1B000000 - PUSH_GLOBAL sd_offset_x *///sd_offset_x | /* 219 - 2E000000 1B000000 - PUSH_GLOBAL sd_offset_x *///sd_offset_x | ||
/* 220 - 4D000000 02000000 - SETATTR_VECTOR_ELEMENT 0 position *///logo.position->0 = sd_offset_x | /* 220 - 4D000000 02000000 - SETATTR_VECTOR_ELEMENT 0 position *///logo.position->0 = sd_offset_x | ||
/* 221 - 22000000 00000000 - REMOVE */ | /* 221 - 22000000 00000000 - REMOVE */ logo.position->0 = sd_offset_x; | ||
/* 222 - 2E000000 15000000 - PUSH_GLOBAL blur *///blur | /* 222 - 2E000000 15000000 - PUSH_GLOBAL blur *///blur | ||
/* 223 - 2E000000 1B000000 - PUSH_GLOBAL sd_offset_x *///sd_offset_x | /* 223 - 2E000000 1B000000 - PUSH_GLOBAL sd_offset_x *///sd_offset_x | ||
/* 224 - 4D000000 02000000 - SETATTR_VECTOR_ELEMENT 0 position *///blur.position->0 = sd_offset_x | /* 224 - 4D000000 02000000 - SETATTR_VECTOR_ELEMENT 0 position *///blur.position->0 = sd_offset_x | ||
/* 225 - 22000000 00000000 - REMOVE */ | /* 225 - 22000000 00000000 - REMOVE */ blur.position->0 = sd_offset_x; | ||
/* 226 - 2E000000 16000000 - PUSH_GLOBAL footer *///footer | /* 226 - 2E000000 16000000 - PUSH_GLOBAL footer *///footer | ||
/* 227 - 2E000000 1B000000 - PUSH_GLOBAL sd_offset_x *///sd_offset_x | /* 227 - 2E000000 1B000000 - PUSH_GLOBAL sd_offset_x *///sd_offset_x | ||
/* 228 - 4D000000 02000000 - SETATTR_VECTOR_ELEMENT 0 position *///footer.position->0 = sd_offset_x | /* 228 - 4D000000 02000000 - SETATTR_VECTOR_ELEMENT 0 position *///footer.position->0 = sd_offset_x | ||
/* 229 - 22000000 00000000 - REMOVE */ | /* 229 - 22000000 00000000 - REMOVE */ footer.position->0 = sd_offset_x; | ||
/* 230 - 2E000000 1C000000 - PUSH_GLOBAL sd_scale *///sd_scale | /* 230 - 2E000000 1C000000 - PUSH_GLOBAL sd_scale *///sd_scale | ||
/* 231 - 27000000 0000803F - PUSH_FLOAT 1.0 *///1.0 | /* 231 - 27000000 0000803F - PUSH_FLOAT 1.0 *///1.0 | ||
Line 642: | Line 638: | ||
/* 234 - 49000000 03000000 - PUSH_VECTOR 3 *///<1.0, 0.5, 0.5> | /* 234 - 49000000 03000000 - PUSH_VECTOR 3 *///<1.0, 0.5, 0.5> | ||
/* 235 - 01000000 00000000 - ASSGN *///sd_scale = <1.0, 0.5, 0.5> | /* 235 - 01000000 00000000 - ASSGN *///sd_scale = <1.0, 0.5, 0.5> | ||
/* 236 - 22000000 00000000 - REMOVE */ | /* 236 - 22000000 00000000 - REMOVE */ sd_scale = <1.0, 0.5, 0.5>; | ||
/* 237 - 2E000000 14000000 - PUSH_GLOBAL logo *///logo | /* 237 - 2E000000 14000000 - PUSH_GLOBAL logo *///logo | ||
/* 238 - 2E000000 1C000000 - PUSH_GLOBAL sd_scale *///sd_scale | /* 238 - 2E000000 1C000000 - PUSH_GLOBAL sd_scale *///sd_scale | ||
/* 239 - 31000000 03000000 - SETATTR scale *///scale | /* 239 - 31000000 03000000 - SETATTR scale *///scale | ||
/* 240 - 22000000 00000000 - REMOVE */ | /* 240 - 22000000 00000000 - REMOVE */ logo.scale = sd_scale; | ||
/* 241 - 2E000000 15000000 - PUSH_GLOBAL blur *///blur | /* 241 - 2E000000 15000000 - PUSH_GLOBAL blur *///blur | ||
/* 242 - 2E000000 1C000000 - PUSH_GLOBAL sd_scale *///sd_scale | /* 242 - 2E000000 1C000000 - PUSH_GLOBAL sd_scale *///sd_scale | ||
/* 243 - 31000000 03000000 - SETATTR scale *///scale | /* 243 - 31000000 03000000 - SETATTR scale *///scale | ||
/* 244 - 22000000 00000000 - REMOVE */ | /* 244 - 22000000 00000000 - REMOVE */ blur.scale = sd_scale; | ||
/* 245 - 2E000000 16000000 - PUSH_GLOBAL footer *///footer | /* 245 - 2E000000 16000000 - PUSH_GLOBAL footer *///footer | ||
/* 246 - 2E000000 1C000000 - PUSH_GLOBAL sd_scale *///sd_scale | /* 246 - 2E000000 1C000000 - PUSH_GLOBAL sd_scale *///sd_scale | ||
/* 247 - 31000000 03000000 - SETATTR scale *///scale | /* 247 - 31000000 03000000 - SETATTR scale *///scale | ||
/* 248 - 22000000 00000000 - REMOVE */ | /* 248 - 22000000 00000000 - REMOVE */ footer.scale = sd_scale;}} | ||
/* 249 - 2E000000 17000000 - PUSH_GLOBAL logo_hide *///logo_hide | /* 249 - 2E000000 17000000 - PUSH_GLOBAL logo_hide *///logo_hide | ||
/* 250 - 26000000 00000000 - PUSH_INT 0 *///0 | /* 250 - 26000000 00000000 - PUSH_INT 0 *///0 |