Difference between revisions of "Template:Table bitwise"

From FF5 Hacking Wiki
Jump to navigation Jump to search
(Table for bitwise data)
 
m (Re-organizing the template in order to display the MSB first (then need to update all references, as values will be flipped))
 
Line 1: Line 1:
 
{| class="wikitable sortable"
 
{| class="wikitable sortable"
! Bit !! Hex !! Status
+
! Bit !! Bin !! Hex !! Status
 
|-
 
|-
| 0 || 0x01 || {{{1}}}
+
! 7
 +
| 10000000 || 0x80 || {{{8}}}
 
|-
 
|-
| 1 || 0x02 || {{{2}}}
+
! 6
 +
| 01000000 || 0x40 || {{{7}}}
 
|-
 
|-
| 2 || 0x04 || {{{3}}}
+
! 5
 +
| 00100000 || 0x20 || {{{6}}}
 
|-
 
|-
| 3 || 0x08 || {{{4}}}
+
! 4
 +
| 00010000 || 0x10 || {{{5}}}
 
|-
 
|-
| 4 || 0x10 || {{{5}}}
+
! 3
 +
| 00001000 || 0x08 || {{{4}}}
 
|-
 
|-
| 5 || 0x20 || {{{6}}}
+
! 2
 +
| 00000100 || 0x04 || {{{3}}}
 
|-
 
|-
| 6 || 0x40 || {{{7}}}
+
! 1
 +
| 00000010 || 0x02 || {{{2}}}
 
|-
 
|-
| 7 || 0x80 || {{{8}}}
+
! 0
 +
| 00000001 || 0x01 || {{{1}}}
 
|}
 
|}
  
  
 
[[Category:Template]]
 
[[Category:Template]]

Latest revision as of 00:36, 10 March 2019

Bit Bin Hex Status
7 10000000 0x80 {{{8}}}
6 01000000 0x40 {{{7}}}
5 00100000 0x20 {{{6}}}
4 00010000 0x10 {{{5}}}
3 00001000 0x08 {{{4}}}
2 00000100 0x04 {{{3}}}
1 00000010 0x02 {{{2}}}
0 00000001 0x01 {{{1}}}