summaryrefslogtreecommitdiff
path: root/packager.c
diff options
context:
space:
mode:
authorAstrid Smith2010-07-24 16:48:51 -0700
committerAstrid Smith2010-07-24 16:48:51 -0700
commit48aaaa74f7052e870d43e840a069eeda7729f404 (patch)
treefa6d3fc6c73133d80f3eefe0a36c884b2676d2f1 /packager.c
parentf62a714b9087f124f65450c86b50435266e96e62 (diff)
Created ROM packager utility stub
Diffstat (limited to 'packager.c')
-rw-r--r--packager.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/packager.c b/packager.c
new file mode 100644
index 0000000..0344cb0
--- /dev/null
+++ b/packager.c
@@ -0,0 +1,20 @@
+/* Copyright 2010, Astrid Smith
+ * GPL
+ *
+ * A Linux tool to turn a rom dump into an 89g file of rom segments.
+ */
+
+#include <tilp/tifiles.h>
+#include <tilp/macros.h>
+
+
+int main(int argc, char **argv)
+{
+ Ti9xFlash content;
+
+ tifiles_init();
+
+
+
+ return 0;
+}