NASM汇编源码教材
NASM汇编源码+教材,很详细! define ARRAY_SIZE 100 %define NEW_LINE 10 segment .data FirstMsg db "First 10 elements of array", 0 Prompt db "Enter index of element to display: ", 0 SecondMsg db "Element %d is %d", NEW_LINE, 0 ThirdMsg db "Elements 20 through 29 of array", 0