comparison gen.h @ 574:1594525e2157

More 68K core refactoring to both reduce the amount of code and better split the host-cpu specific parts from the generic parts
author Michael Pavone <pavone@retrodev.com>
date Mon, 03 Mar 2014 22:17:20 -0800
parents 76bba9ffe351
children 98927f1b005b
comparison
equal deleted inserted replaced
573:29d99db6f55d 574:1594525e2157
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); 21 void call(code_info *code, code_ptr fun);
22 void jmp(code_info *code, code_ptr dest); 22 void jmp(code_info *code, code_ptr dest);
23 void jmp_r(code_info *code, uint8_t dst);
23 24
24 #endif //GEN_H_ 25 #endif //GEN_H_