summaryrefslogtreecommitdiff
path: root/gen.h
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2014-03-02 16:34:29 -0800
committerMichael Pavone <pavone@retrodev.com>2014-03-02 16:34:29 -0800
commit48d6afdd1c9aaafc5b8ce59c584e360d89571a5b (patch)
tree2974a8819a2c80d7fc0ebc2e71b9a8e1370863fe /gen.h
parent8664df5a5d2870c67036666b66ce0d2f9fcdd1eb (diff)
Initial stab at separating the generic parts of the 68K core from the host-cpu specific parts.
Diffstat (limited to 'gen.h')
-rw-r--r--gen.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/gen.h b/gen.h
index cd6933e..a2d835c 100644
--- a/gen.h
+++ b/gen.h
@@ -18,5 +18,7 @@ typedef struct {
} 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_