Added PushAddress (SPC command 0x3).
This commit is contained in:
parent
c7853af3cf
commit
a7e10679d4
1 changed files with 5 additions and 0 deletions
|
@ -46,6 +46,11 @@ namespace arookas
|
|||
writer.Write8(0x02);
|
||||
writer.WriteS32(dataIndex);
|
||||
}
|
||||
public void PushAddress(int value)
|
||||
{
|
||||
writer.Write8(0x03);
|
||||
writer.WriteS32(value);
|
||||
}
|
||||
public void PushVariable(sunVariableInfo variableInfo)
|
||||
{
|
||||
PushVariable(variableInfo.Display, variableInfo.Index);
|
||||
|
|
Loading…
Reference in a new issue