CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Mar 2004
    Posts
    2

    Best simple Book - understanding low level aspects of programing

    Any advice ?

    Bits , Bytes , Hex , binary , memory etc.

    Cheers

  2. #2
    Join Date
    Apr 2003
    Location
    Athens, Greece
    Posts
    1,094
    For low level programming (directly related to hardware) you probably need a book on Assembly.
    This language depends heavily on the machine characteristics.
    Or maybe a book on good old C? "The C Programming Language" Kerningham, Richie (maybe I mispelled the names) if I remember well...
    Extreme situations require extreme measures

  3. #3
    Join Date
    Sep 2002
    Posts
    924
    One good (and free via the internet) source of info is Randall Hyde's Art of Assembly Language Programming.

    Start with the 16 Bit Dos version, as it goes more in depth on memory and bits and bytes, and numbering systems, etc.

    You can find the online version of these books here:
    Art of Assembly Language Programming and HLA by Randall Hyde

  4. #4
    Join Date
    Aug 1999
    Location
    Wisconsin
    Posts
    507
    I generally agree with the other comments. If you are looking for something really basic, then consider "Code" by Charles Petzold. It is somewhat long-winded, and experienced computer people may get bored with it. However, it may be good for beginners as it does not assume any prior knowledge of anything.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured