Booping around with kauffman assembly basics
https://www-users.cse.umn.edu/~kauffman/2021/06-assembly-basics.pdf
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
long
|
||||
exchange(long *xp, long y)
|
||||
{
|
||||
long x = *xp;
|
||||
*xp = y;
|
||||
return x;
|
||||
}
|
||||
Reference in New Issue
Block a user