summaryrefslogtreecommitdiff
path: root/ujit_asm_tests.c
diff options
context:
space:
mode:
Diffstat (limited to 'ujit_asm_tests.c')
-rw-r--r--ujit_asm_tests.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/ujit_asm_tests.c b/ujit_asm_tests.c
new file mode 100644
index 0000000000..0c94fb8b04
--- /dev/null
+++ b/ujit_asm_tests.c
@@ -0,0 +1,31 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include "ujit_asm.h"
+
+//fprintf(stderr, format);
+//exit(-1)
+
+void run_tests()
+{
+ printf("Running assembler tests\n");
+
+ codeblock_t cb;
+ cb_init(&cb, 4096);
+
+
+
+
+
+
+
+
+
+ printf("Assembler tests done\n");
+}
+
+int main(int argc, char** argv)
+{
+ run_tests();
+
+ return 0;
+}