diff options
author | Michael Pavone <pavone@retrodev.com> | 2017-03-25 00:21:32 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2017-03-25 00:21:32 -0700 |
commit | 61204637be41f75cfa67997b30f4820871c956b5 (patch) | |
tree | 394f1596bad2855775368e2f7b8e83c589a1e474 /gen.h | |
parent | b13c022c4b885f9ac0e649553211e69187d8aed9 (diff) |
Prevent blowing past our native translated instruction size of 255 bytes when translating movem with a large register list. Fixes bug in which Fantastic Dizzy was completely broken on 32-bit builds
Diffstat (limited to 'gen.h')
-rw-r--r-- | gen.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -24,6 +24,8 @@ void init_code_info(code_info *code); void call(code_info *code, code_ptr fun); void jmp(code_info *code, code_ptr dest); void jmp_r(code_info *code, uint8_t dst); +//standard return from subroutine instruction +void rts(code_info *code); //call a function and put the arguments in the appropriate place according to the host ABI void call_args(code_info *code, code_ptr fun, uint32_t num_args, ...); //like the above, but call a function pointer stored in a register |