|
Mario Kart 64
|
Jump/Branch/Function - Tells the cpu to execute instructions somewhere else and come back here when done.Hexadecimal - A numbering system. Similar numbering sytems include decimal (also called base-ten) and roman numerals.s32/word/int - A max size for a number. Data represented as 32 bits or 4 bytes: 0x00000001. It consists of eight digits.s16/half-word/short - A number represented as 16 bits or 2 bytes: 0x0001. It consists of four digits. Maximum value 65,535 (0xFFFF).s8/byte/char - A number represented as 8 bits or 1 byte: 0x01. It consists of two digits. Maximum value 255 (0xFF).unsigned - A positive integer. 0, 1 to maximum value.signed - A positive or negative integer. 0, -1 to -max, 1 to max.f32/float - A positive or negative value containing a decimals such as 5.0f or 5.1f or 5.148282ff64/double - A positive or negative value of high-precision. Ex. 5.5784298538832 (many decimals).