Hower Chow's Website

Assembly Programming

Date: . Last updated: .
  • Register
  • Instruction
  • Register

    The eight general-purpose registers: RAX,RBX,RCX,RDX,RDI,RSI,RBP,RSP

    1. b: byte
    2. w: word = 2 byte
    3. l: long word = 2 word = 4 byte
    4. q: quad word = 2 long word = 4 word = 8 byte

    Instruction

    Data Movement Instructions

    Arithmetic and Logic Instructions

    Control Flow Instructions

    Memory Addressing

    1. Immediate Addressing
    2. Direct Addressing
    3. Register Addressing
    4. Register Indirect Addressing
    5. Register Relative Addressing
    6. Based Indexed Addressing
    7. Relative Based Indexed Addressing

    ELF

    ELF header: /usr/bin/elf.h

    2's Complent Code

    -79 -> 0XFF4F -> 0XFFB0 -> 补码: 0XFFB1
    -112 -> 0XFF70 ->0XFF8F -> 补码: 0XFF90
    10进制 ==> 其他进制:
    除基取余, 倒排; 乘基取整

    寻址方式

    寄存器间接寻址: 把偏移地址放在寄存器中的寻址方式

    
    
    	    move AX [BX] ;; 段基址: DS
                move AX [BP] ;; 段基址: SS
                move AX [SI] ;; 段基址: DS
                move AX [DI] ;; 段基址: DS
    
    		    

    寄存器相对寻址: 把偏移地址放在寄存器中的寻址方式

    
    
    	    move AX 10[BX] ;; 段基址: DS
                move AX 30[BP] ;; 段基址: SS
    
    		    

    寄存器基址变址寻址:

    
    
    	    move CX 100H[BX][DI]  ;; 段基址: DS
                move AX TABLE[BX][DI], AX ;; 段基址: SS
    
    		    

    寄存器相对基址变址寻址:

    
    
                lea edx, [esi + edi*4 + 100h];
    
    
    		    

    gcc

    gcc -S -masm=intel -Og -fverbose-asm test.c

    dosbox

    ~/.doxbox/dosbox-0.74-3.conf

    windowresolution=1280x960
    output=overlay

    [autoexec]
    mount c /home/raymond/Downloads/mario&luigi/
    c:

    Link