diff options
author | Michael Pavone <pavone@retrodev.com> | 2015-01-07 22:42:35 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2015-01-07 22:42:35 -0800 |
commit | f1ad0a3e376b1103b48689fc48ed9443641a038f (patch) | |
tree | 8ffe28bf7bc22db29420dbb71b150174a7146324 /gen_arm.h | |
parent | f0a88e3789cfff8dabb5a13d4e17efdcc2ded309 (diff) |
Added ldr and str instructions to gen_arm
Diffstat (limited to 'gen_arm.h')
-rw-r--r-- | gen_arm.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -149,5 +149,9 @@ uint32_t pop(code_info *code, uint32_t reg); uint32_t pop_cc(code_info *code, uint32_t reg, uint32_t cc); uint32_t popm(code_info *code, uint32_t reglist); uint32_t popm_cc(code_info *code, uint32_t reglist, uint32_t cc); +uint32_t ldr_cc(code_info *code, uint32_t dst, uint32_t base, int32_t offset, uint32_t cc); +uint32_t ldr(code_info *code, uint32_t rst, uint32_t base, int32_t offset); +uint32_t str_cc(code_info *code, uint32_t src, uint32_t base, int32_t offset, uint32_t cc); +uint32_t str(code_info *code, uint32_t src, uint32_t base, int32_t offset); #endif //GEN_ARM_H_ |