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,9 @@
|
||||
long
|
||||
mult2(long a, long b);
|
||||
|
||||
void
|
||||
multstore(long x, long y, long *dest)
|
||||
{
|
||||
long t = mult2(x, y);
|
||||
*dest = t;
|
||||
}
|
||||
Reference in New Issue
Block a user