diff gen.h @ 570:76bba9ffe351

Initial stab at separating the generic parts of the 68K core from the host-cpu specific parts.
author Michael Pavone <pavone@retrodev.com>
date Sun, 02 Mar 2014 16:34:29 -0800
parents c8fefa140c80
children 1594525e2157
line wrap: on
line diff
--- a/gen.h	Sun Mar 02 15:25:52 2014 -0800
+++ b/gen.h	Sun Mar 02 16:34:29 2014 -0800
@@ -18,5 +18,7 @@
 } code_info;
 
 void init_code_info(code_info *code);
+void call(code_info *code, code_ptr fun);
+void jmp(code_info *code, code_ptr dest);
 
 #endif //GEN_H_