Standard Notation

From TLoZ: ALTTP Hacking Resources
Revision as of 13:27, 10 November 2016 by Jkazos (talk | contribs) (Created page with "== Numbers == ;$ABCD : This is a number in hexadecimal (base 16). Some programming languages represent this as 0xABCD instead. ;%1001 : This is a number in binary (base 2)....")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Numbers

$ABCD
This is a number in hexadecimal (base 16). Some programming languages represent this as 0xABCD instead.
%1001
This is a number in binary (base 2). Some programming languages represent this as 0b1001 instead.

Offsets

$3C1B[$20]
This is an offset (number of bytes from the start) and length of something. In this case, the first byte is at $3C1B and the last byte is at $3C3A ($3C1B+$20-1).

Ranges

$ABAA..$ABFF
This is an inclusive range of hexadecimal numbers, referring to $ABAA, $ABFF, and any value between them.

ROM Versions

See also: ROM Versions

(J10)
Japan (1.0) (Japanese)
(J11)
Japan (1.1) (Japanese)
(J12)
Japan (1.2) (Japanese)
(USA)
USA (English)
(CAN)
Canada (French)
(EUR)
Europe (English)
(GER)
Germany (German)
(FRA)
France (French)