Skip to content

Commit 2e7c68d

Browse files
Added new opcodes
Still it is supported by latest release (since there is "free bytes system"), so there is no need to rerelease the tool just yet.
1 parent 9e524b1 commit 2e7c68d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

silky_mes.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,16 @@ class SilkyMesScript:
4242
(0x35, '', ''),
4343
(0x36, 'B', 'JUMP_2'),
4444
(0x37, '', ''),
45+
(0x38, '', ''),
4546
(0x3A, '', ''),
4647
(0x3B, '', ''),
4748
(0x3C, '', ''),
4849
(0x3D, '', ''),
4950
(0x3E, '', ''),
51+
(0x3F, '', ''),
5052

53+
(0x40, '', ''),
54+
(0x41, '', ''),
5155
(0x42, '', ''),
5256
(0x43, '', ''),
5357

@@ -67,7 +71,6 @@ class SilkyMesScript:
6771

6872
def __init__(self, mes_name: str, txt_name: str, encoding: str = "", debug: bool = False, verbose: bool = False,
6973
hackerman_mode: bool = False):
70-
# TODO: RELEASE SECOND-PARAMETER OFFSET SYSTEM ASSEMBLING!
7174
"""Prms:
7275
mes_name -- name (and path) of mes script.
7376
txt_name -- name (and path) of txt file.

0 commit comments

Comments
 (0)