Results 1 to 4 of 4

Thread: Any better asm tutorial?

  1. #1

    Thread Starter
    PowerPoster abdul's Avatar
    Join Date
    Dec 2000
    Location
    Ontario,Canada
    Posts
    2,827

    Any better asm tutorial?

    I have been searhing on the NET for some great asm tutorials but those guys only talk about the stuff like basic registers, segments/offsets, and some other basic stuff. I want to know more 'cause there is more coding involved in asm like "[cs:ds]" (I never understood what that was).
    Anybody knows about about any good free tutorial or book (not Art Of Assembly)?
    Baaaaaaaaah

  2. #2
    ChimpFace9000
    Guest
    [ and ] mean the byte, word or dword at that memory location.

    so..
    Code:
    mov al, [cs:80h]
    would move whatever is at segment cs offset 80h into al.

    And you cant to cs:ds because those are both segment registers.

    Anything else?

  3. #3

    Thread Starter
    PowerPoster abdul's Avatar
    Join Date
    Dec 2000
    Location
    Ontario,Canada
    Posts
    2,827
    Thanks chimp
    I got it now...it's not that hard but it's hard to actually use this stuff when programming. Do you know any good tutorial or where did you learn all this stuff from 'cause I see you in this asm forum almost all the time?
    Baaaaaaaaah

  4. #4

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