-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresta.s
51 lines (45 loc) · 1.42 KB
/
resta.s
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Autor: Cortez Huerta Gonzalo
// Fecha: 05/11/2024
// Descripción: Programa en ensamblador que resta dos numeros
// Equivalente en C#:
/*
using System;
using System.Runtime.InteropServices;
class Program
{
// Importar las funciones desde la biblioteca compartida
[DllImport("libcalculations.so")]
public static extern long suma(long a, long b);
[DllImport("libcalculations.so")]
public static extern long resta(long a, long b); // Nueva función resta
static void Main()
{
Console.Write("Ingresa el primer número: ");
if (long.TryParse(Console.ReadLine(), out long num1))
{
Console.Write("Ingresa el segundo número: ");
if (long.TryParse(Console.ReadLine(), out long num2))
{
long resultadoSuma = suma(num1, num2);
Console.WriteLine($"La suma de {num1} y {num2} es: {resultadoSuma}");
long resultadoResta = resta(num1, num2);
Console.WriteLine($"La resta de {num1} y {num2} es: {resultadoResta}");
}
else
{
Console.WriteLine("Entrada no válida para el segundo número.");
}
}
else
{
Console.WriteLine("Entrada no válida para el primer número.");
}
}
}
*/
.section .data
.section .text
.global resta
resta:
sub x0, x0, x1 // x0 = x0 - x1, almacena el resultado en x0
ret