Assembly/22-11-2021/ax0.asm

19 lines
289 B
NASM

; multi-segment executable file template.
name "Inizializzare AX a zero"
data segment
; add your data here!
pkey db "press any key...$"
ends
stack segment
dw 128 dup(0)
ends
code segment
start:
mov ax, 0000h
ends
end start ; set entry point and stop the assembler.