The ABI is a set of conventions around how a binary interface with other programs.

HOW TO

  • How to interact call a assembly function from C
// first define your main.c
extern print(char* arg);
 
int main() {
	print("Hola mundo")
}