diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-06-27 13:00:19 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-06-27 13:00:19 +0300 |
| commit | 6aefc5167a64e05580dcf1afc70efa496ed145ac (patch) | |
| tree | 57032839fd8f5f748b273c679f3766c6911bbca5 /lib/imm_decls.h | |
| parent | e80d3758a37848cda7990e8eff68ed9df344afa4 (diff) | |
| download | copyjit-6aefc5167a64e05580dcf1afc70efa496ed145ac.tar.gz copyjit-6aefc5167a64e05580dcf1afc70efa496ed145ac.zip | |
add immediate loading
Diffstat (limited to 'lib/imm_decls.h')
| -rw-r--r-- | lib/imm_decls.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/imm_decls.h b/lib/imm_decls.h new file mode 100644 index 0000000..5a2f840 --- /dev/null +++ b/lib/imm_decls.h @@ -0,0 +1,11 @@ +#ifndef COPYJIT_IMM_DECLS_H +#define COPYJIT_IMM_DECLS_H +void *compile_addia(ctx_t *ctx, unsigned long i); +void *compile_addio(ctx_t *ctx, unsigned long i); +void *compile_addix(ctx_t *ctx, unsigned long i); +void *compile_addiy(ctx_t *ctx, unsigned long i); +void *compile_lia(ctx_t *ctx, unsigned long i); +void *compile_lio(ctx_t *ctx, unsigned long i); +void *compile_lix(ctx_t *ctx, unsigned long i); +void *compile_liy(ctx_t *ctx, unsigned long i); +#endif /* COPYJIT_DECLS_H */ |
