Lab3_OAC1_11R211 (2)
Lab3_OAC1_11R211 (2)
Lab3_OAC1_11R211 (2)
B. TEMAS:
Utilizar Emulador de lenguaje assembler.
C. OBJETIVO(S):
Emulador Assemblre
Corregir código de ejecución
E. PROCEDIMIENTO :
1) Utilizar el emulador web de assembler online.
https://www.mycompiler.io/es/new/asm-x86_64
3) Explicar donde está el error en el código con sus palabras y como lo soluciono
F. RECURSOS:
https://www.mycompiler.io/es/new/asm-x86_64
G. RESULTADOS:
Realizar el desarrollo del laboratorio en esta sección, imágenes agregarlo al final como anexo.
section .data
FC-FISC-1-8-2016
UNIVERSIDAD TECNOLÓGICA DE PANAMÁ
FACULTAD DE INGENIERÍA DE SISTEMAS COMPUTACIONALES
DEPARTAMENTO DE ARQUITECTURA Y REDES DE COMPUTADORAS
GUÍA DE ACTIVIDAD N° 3
LABORATORIOS # 3
section .text
global _start ; Indicar el punto de entrada al programa
_start:
; Llamada al sistema para escribir (sys_write)
mov rax, 1 ; Número de syscall para escribir
mov rdi, 1 ; File descriptor (1 = salida estándar, stdout)
mov rsi, msg ; Dirección del mensaje
mov rdx, 13 ; Longitud del mensaje en bytes
syscall ; Invoca la syscall
H. CONSIDERACIONES FINALES: