diff options
Diffstat (limited to 'emulator')
-rw-r--r-- | emulator/hart_test.c | 2 | ||||
-rw-r--r-- | emulator/lib.c | 3 | ||||
-rw-r--r-- | emulator/main.c | 4 |
3 files changed, 3 insertions, 6 deletions
diff --git a/emulator/hart_test.c b/emulator/hart_test.c index 5509dab..5f2549b 100644 --- a/emulator/hart_test.c +++ b/emulator/hart_test.c @@ -247,5 +247,3 @@ int main(int argc, char* argv[]) test();
return EXIT_SUCCESS;
}
-
-#include "emulator/hart.c"
diff --git a/emulator/lib.c b/emulator/lib.c new file mode 100644 index 0000000..453a3f9 --- /dev/null +++ b/emulator/lib.c @@ -0,0 +1,3 @@ +#include "hart.c"
+#include "elf.c"
+
diff --git a/emulator/main.c b/emulator/main.c index a00a717..4bf99a3 100644 --- a/emulator/main.c +++ b/emulator/main.c @@ -31,7 +31,3 @@ int main(int argc, char* argv[]) return EXIT_SUCCESS;
}
-
-#include "emulator/hart.c"
-#include "emulator/elf.c"
-
|