/// <summary>
 /// Assembles a push instruction to a specified address.
 /// </summary>
 protected byte[] AssemblePush(int address, SonicHeroes.Networking.WebSocket_Client modLoaderServerSonic)
 {
     // Assemble code for push from new time string format address.
     string[] x86Mnemonics = new string[]
     {
         "use32",
         "push 0x" + address.ToString("X"),
     };
     return(modLoaderServerSonic.SendData_Alternate(Message_Type.Client_Call_Assemble_x86_Mnemonics, Serialize_x86_ASM_Mnemonics(x86Mnemonics), true));
 }