This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* --------------------------------------------------------------------------------- | |
* Lenguajes de Interfaz en TECNM Campus ITT | |
* Autor: [trejo dena ulises] | |
* Fecha: [25/03/25] | |
* Descripción: Esta plantilla proporciona una estructura profesional para el desarrollo | |
* embebido, incluyendo C# y Assembly ARM64 para RaspbianOS. | |
* Demostración: [ ASCIINEMA.ORG/.....] | |
* --------------------------------------------------------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* --------------------------------------------------------------------------------- | |
* Lenguajes de Interfaz en TECNM Campus ITT | |
* Autor: [TREJO DENA ULISES] | |
* Fecha: [07/04/2025] | |
* Descripción: Este programa solicita un número al usuario, evalúa si es divisible | |
* entre 2 y 5 y muestra el mensaje correspondiente usando Assembly ARM64. | |
* Demostración: [ https://asciinema.org/... ] | |
* --------------------------------------------------------------------------------- | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* --------------------------------------------------------------------------------- | |
* Lenguajes de Interfaz en TECNM Campus ITT | |
* Autor: [Tu Nombre] | |
* Fecha: [YYYY-MM-DD] | |
* Descripción: Solicita el nombre del usuario y lo imprime en pantalla. | |
* Demostración: [ ASCIINEMA.ORG/..... ] | |
* --------------------------------------------------------------------------------- | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.global _start | |
.section .data | |
mensaje: .asciz "Esperando.\n" | |
timespec: | |
.quad 2 // tv_sec = 2 segundos | |
.quad 0 // tv_nsec = 0 nanosegundos | |
.section .text |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.global _start | |
.section .data | |
mensaje: .ascii "Factorial: " | |
len = . - mensaje | |
newline: .asciz "\n" | |
.section .bss | |
.align 4 | |
buffer: .skip 32 // buffer seguro para conversión de número |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* --------------------------------------------------------------------------------- | |
* Lenguajes de Interfaz en TECNM Campus ITT | |
* Autor: TREJO DENA ULISES | |
* Fecha: 08/042025 | |
* Descripción: número entero dado por el usuario | |
* es múltiplo de 6 (divisible entre 2 y 3) usando Assembly ARM64. | |
* Incluye comparación de residuos con instrucciones aritméticas. | |
* Demostración: [ ASCIINEMA.ORG/.....] | |
* --------------------------------------------------------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* --------------------------------------------------------------------------------- | |
* Lenguajes de Interfaz en TECNM Campus ITT | |
* Autor: [TREJO DENA ULISES ] | |
* Fecha: [08/04/2025] | |
* Descripción: Tabla de multiplicar del 1 al 12 usando ARM64 Assembly en Raspbian. | |
* Demostración: [ ASCIINEMA.ORG/.....] | |
* --------------------------------------------------------------------------------- | |
*/ |