Booping around with kauffman assembly basics

https://www-users.cse.umn.edu/~kauffman/2021/06-assembly-basics.pdf
This commit is contained in:
2023-11-08 12:42:46 -05:00
parent 9d36627e87
commit 9109e3a3dc
4 changed files with 28 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
long
exchange(long *xp, long y)
{
long x = *xp;
*xp = y;
return x;
}