Skip to content

Instantly share code, notes, and snippets.

@gitpraetorianlabs
Last active June 1, 2016 22:24
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save gitpraetorianlabs/bfb710e72a050dc3880cfdc6d3da5ea3 to your computer and use it in GitHub Desktop.
#include <stdio.h>
// Function that calls another function with some arguments.
// This will be below the max amount of a(x) registers.
// by b1ack0wl
void main(){
int a = 0;
int b = 0x41;
pass_args_to_me(a,b);
}
int pass_args_to_me(int a, int b){
return (a+b);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment