blob: 730281a206166bd243d89f15d57257a2f7972d38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/****************************************************************/
/* mdso: midipix dso scavenger */
/* Copyright (C) 2015--2016 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.MDSO. */
/****************************************************************/
#include <stdint.h>
#include <stdio.h>
#include <mdso/mdso.h>
static const char * const asm_lines[] = {
"\t.file \"__%s_sym_fn.s\"\n",
"\t.section .text\n",
"\t.globl %s\n",
"\t.def %s; .scl 2; .type 32; .endef\n\n",
"%s:\n",
"\tjmp *__imp_%s\n\n",
0
};
int mdso_generate_symfn(const char * sym, FILE * fout)
{
const char * const * line;
for (line=asm_lines; *line; line++)
if ((fprintf(fout,*line,sym)) < 0)
return -1;
return 0;
}
|