.intel_syntax noprefix
.file "Ejemplo1.s"
#secciones
.section .data
# <- datos
# <- datos
#PROGRAMA
.section .text
.global _start
_start:
    mov ax,10
    mov bx,20
    push ax
    push bx
    sub ax,ax
    sub bx,bx
    pop bx
    pop ax
    int 0x80
.end

