Advertisement
BaSs_HaXoR

What IS a DWORD/WORD/etc?

Mar 11th, 2015
411
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. What IS a DWORD/WORD/etc?
  2. #####-----#####-----#####-----#####-----#####-----#####-----#####-----#####-----#####-----#####-----#####
  3. bit = ...1 bit...
  4. nybble = 4 bits = 1/2 byte
  5. byte = 8 bits = 2 nybbles
  6. WORD = 2 bytes = 4 nybbles = 16 bits
  7. DWORD = 2 WORDs = 4 bytes = 8 nybbles = 32 bits
  8. QWORD = 2 DWORDs = 4 WORDS = ..... = 64 bits
  9.  
  10. DWORD stands for Double Word, QWORD for Quad (prefix meaning 4).
  11. I suppose the next would be Oct (prefix meaning 8).
  12. #####-----#####-----#####-----#####-----#####-----#####-----#####-----#####-----#####-----#####-----#####
  13. "It doesn't matter if you're white, or if you're black...the only color that REALLY matters is green"
  14. -Peter Griffin
  15. #####-----#####-----#####-----#####-----#####-----#####-----#####-----#####-----#####-----#####-----#####
  16. // Source: http://www.gamedev.net/topic/80721-what-is-a-dword/
  17. // BaSs_HaXoR
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement