The Microsoft MACRO Assembler , Version 1.25 Page 1-1 06-15-:4 1 ;PROGRAMA DE ENVIO 2 3 4 5 6 7 0000 datos segment8 9 10 11 0000 datos ends12 13 0000 pila segment stack14 15 0000 80 [ db 128 dup ('pila')16 70 69 6C 61 17 ] 18 19 20 0200 pila ends21 22 0000 codigo segment23 24 assume cs:codigo, ss:pila, ds:datos25 0000 BB 0500 inicio: mov bx,0500h 26 0003 8A 07 ot: mov al,[bx] 27 0005 BA 0378 mov dx,0378h 28 0008 EE out dx,al 29 0009 B9 00FF mov cx,00FFh 30 000C E2 FE AT: loop AT 31 000E 43 inc bx 32 000F 81 FB 0600 cmp bx,0600h 33 34 0013 75 EE jnz ot 35 36 37 38 0015 codigo ends39 40 end The Microsoft MACRO Assembler , Version 1.25 Page Symbols -1 06-15-:4 Segments and groups: N a m e Size align combine classCODIGO . . . . . . . . . . . . . 0015 PARA NONE DATOS. . . . . . . . . . . . . . 0000 PARA NONE PILA . . . . . . . . . . . . . . 0200 PARA STACK Symbols: N a m e Type Value Attr AT . . . . . . . . . . . . . . . L NEAR 000C CODIGOINICIO . . . . . . . . . . . . . L NEAR 0000 CODIGOOT . . . . . . . . . . . . . . . L NEAR 0003 CODIGOWarning SevereErrors Errors 0 0