From fd9ebcc3b2bbbc0a6884e2617a05f2b7f3f6177d Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Sun, 29 Oct 2017 05:03:32 +0330 Subject: now i can get the symbol names, next thing is to load the object code up in bruiser... --- bfd/test/test.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'bfd/test') diff --git a/bfd/test/test.c b/bfd/test/test.c index 0327658..fe2932c 100644 --- a/bfd/test/test.c +++ b/bfd/test/test.c @@ -1,5 +1,17 @@ #include "stdio.h" +int myfunc1(void) {return 1;} +int myfunc2(void) {return 2;} +int myfunc3(void) {return 3;} +int myfunc4(void) {return 4;} +int myfunc5(void) {return 5;} +int myfunc6(void) {return 6;} + +int myvar1 = 1; +int myvar2 = 2; +int myvar3 = 3; +int myvar4 = 4; + int main(int argc, char** argv) { printf("i live!\n"); } -- cgit v1.2.3