Editing Hypervisor Reverse Engineering
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 5,840: | Line 5,840: | ||
* '''The header checkum is just a sum of first 6 header bytes and 0x8000 constant''' | * '''The header checkum is just a sum of first 6 header bytes and 0x8000 constant''' | ||
* The '''2nd byte''' in every SYSCON message has to be '''1''' or else the function '''sc_send''' fails. | * The '''2nd byte''' in every SYSCON message has to be '''1''' or else the function '''sc_send''' fails. | ||
* The | * The word at offset '''0x8''' is the '''SC VUART index'''. | ||
* The '''half-words''' at offset '''0xC''' and '''0xE''' have to be equal or the function '''sc_send''' fails. | * The '''half-words''' at offset '''0xC''' and '''0xE''' have to be equal or the function '''sc_send''' fails. | ||
==== Calculating Packet Header Checksum ==== | |||
<pre> | <pre> | ||
Line 5,855: | Line 5,857: | ||
}; | }; | ||
</pre> | </pre> | ||
<pre> | <pre> |