Thread: Wanna learn Assembly

  1. #1
    Android geek@02's Avatar
    Join Date
    Mar 2004
    Location
    Kurunegala Colony, Sri Lanka, Sri Lanka
    Posts
    470

    Wanna learn Assembly

    Can anyone please show me any web site for assembly, which I can find all the beginners info about assembly language?

    Pleasant day.

  2. #2
    Guest Sebastiani's Avatar
    Join Date
    Aug 2001
    Location
    Waterloo, Texas
    Posts
    5,708
    Assembly is very cpu-specific. There's intel, motorola, and then other chipmakers - all slightly different from eachother. They do share much in terms of algorithms, branching, and basic logical operation - you get that with all of them. The choice is simply whichever processor you need to program. Find that out and the rest is easy.
    Code:
    #include <cmath>
    #include <complex>
    bool euler_flip(bool value)
    {
        return std::pow
        (
            std::complex<float>(std::exp(1.0)), 
            std::complex<float>(0, 1) 
            * std::complex<float>(std::atan(1.0)
            *(1 << (value + 2)))
        ).real() < 0;
    }

  3. #3
    Android geek@02's Avatar
    Join Date
    Mar 2004
    Location
    Kurunegala Colony, Sri Lanka, Sri Lanka
    Posts
    470
    I wanna program for Intel. So please help me to get started.

  4. #4
    Registered User
    Join Date
    Apr 2004
    Posts
    100
    Go to intel's site and order the software developer's manual set. It's not really geared to newbies, but it has all the info you need about intel architecture. You might check these out too..

    asm source

    assembly language journal

    that's a couple I have bookmarked. There will be plenty of links to other resources (assemblers, etc.) that you might find worth your while. A lot of the links on assembly sites are dead, so it takes a bit to find the good stuff.

    How do I know this? I'm another newbie who's trying to teach himself assembly. Feel free to PM me if you want to trade notes, although as I said, I'm new to this as well.

  5. #5
    Android geek@02's Avatar
    Join Date
    Mar 2004
    Location
    Kurunegala Colony, Sri Lanka, Sri Lanka
    Posts
    470
    Thanks a lot for the links. Hope to contact you.

    And If anybody know anything else please do a post.

  6. #6
    and the hat of int overfl Salem's Avatar
    Join Date
    Aug 2001
    Location
    The edge of the known universe
    Posts
    39,660
    If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
    If at first you don't succeed, try writing your phone number on the exam paper.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. wanna learn all about network programming
    By manav in forum Networking/Device Communication
    Replies: 3
    Last Post: 03-24-2008, 01:45 AM
  2. Assembly question
    By linucksrox in forum Tech Board
    Replies: 13
    Last Post: 04-08-2007, 06:41 PM
  3. Assembly....
    By Victor in forum Linux Programming
    Replies: 8
    Last Post: 12-28-2004, 01:46 AM
  4. assembly language...the best tool for game programming?
    By silk.odyssey in forum Game Programming
    Replies: 50
    Last Post: 06-22-2004, 01:11 PM
  5. Wanna Learn...
    By Timer in forum Windows Programming
    Replies: 12
    Last Post: 07-19-2002, 01:33 PM