Adds cake, crafting remainders, milk buckets, death messages, `misc_run_on_language_setup`, and a lot more symbols. Co-authored-by: Bigjango13 <bigjango13@gmail.com> Reviewed-on: minecraft-pi-reborn/minecraft-pi-reborn#81 Co-authored-by: bigjango13 <bigjango13@noreply.thebrokenrail.org> Co-committed-by: bigjango13 <bigjango13@noreply.thebrokenrail.org>
16 lines
603 B
Modula-2
16 lines
603 B
Modula-2
method void Write_uchar(uchar *i) = 0x18448;
|
|
method void Write_int(int *i) = 0x18454;
|
|
method void Write_ushort(ushort *i) = 0x45a68;
|
|
method void Write_short(short *i) = 0x71918;
|
|
// right_aligned should be true
|
|
method void WriteBits(uchar *buff, uint bits, bool right_aligned) = 0xd41b4;
|
|
|
|
method void Read_uchar(uchar *i) = 0x45ab0;
|
|
method void Read_int(int *i) = 0x184ec;
|
|
method void Read_ushort(ushort *i) = 0x45acc;
|
|
method void Read_short(short *i) = 0x72070;
|
|
// right_aligned should be true
|
|
method void ReadBits(uchar *buff, uint bits, bool right_aligned) = 0xd3e18;
|
|
|
|
property uint readOffset = 0x8;
|