comparison 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
comparison
equal deleted inserted replaced
569:9b7fcf748be0 570:76bba9ffe351
16 code_ptr cur; 16 code_ptr cur;
17 code_ptr last; 17 code_ptr last;
18 } code_info; 18 } code_info;
19 19
20 void init_code_info(code_info *code); 20 void init_code_info(code_info *code);
21 void call(code_info *code, code_ptr fun);
22 void jmp(code_info *code, code_ptr dest);
21 23
22 #endif //GEN_H_ 24 #endif //GEN_H_