Upcoming Events
Unite 2010
11/10 - 11/12 @ Montréal, Canada

GDC China
12/5 - 12/7 @ Shanghai, China

Asia Game Show 2010
12/24 - 12/27  

GDC 2011
2/28 - 3/4 @ San Francisco, CA

More events...
Quick Stats
142 people currently visiting GDNet.
2406 articles in the reference section.

Help us fight cancer!
Join SETI Team GDNet!
Link to us Events 4 Gamers
Intel sponsors gamedev.net search:
Look Up: (916 Terms)
Browse the Dictionary
Section:
Categories:
Audio (80) Business (59) Community (19)
Design (89) Design Patterns (7) File Formats (32)
Games (64) General (83) Graphics (241)
Hardware (54) Network (41) OS (26)
People (30) Programming (143)
Contributions by LOWORBIT
Endian
This refers to the value of bits which comprise a number. Binary numbers are made up of 1s and 0s. A typical eight bit binary number looks like this: 1000 0101

Using a little endian system, the leftmost bit represents a high value, while the rightmost bit represents a small value. A 1 in the rightmost position (0000 0001) represents the number 1. A 1 in the leftmost position (1000 0000) represents 128. Using eight bits, any number from 0 to 255 may be represented.

A big endian system orders the bits in the other direction. In this case, a 1 in the rightmost bit (0000 0001) has the value of 128, while a 1 in the leftmost bit (1000 0000) has the value of 1.

Generally, PCs use a little endian system, while Macs use a big endian system.

Visit the site below for more information and a history of the problem. http://www.mackido.com/General/endian.html



Home
About
Contributors
Add Definition


The Game Dictionary™ is a trademark of GameDev.net LLC. No duplication, reproduction, or transmission of the Game Dictionary or its content is allowed without the consent of GameDev.net LLC.