14 lines
168 B
R
14 lines
168 B
R
/* test calling a function */
|
|
|
|
call@global(128) {
|
|
.arg0
|
|
}
|
|
|
|
main@global(128) {
|
|
#// printf ("Hello World\n");
|
|
: nop
|
|
: mov eax, 1
|
|
: push eax
|
|
: int 0x80
|
|
call(1,2);
|
|
}
|