Skip to content

Commit

Permalink
fix wr indirect ld/st
Browse files Browse the repository at this point in the history
  • Loading branch information
bsekisser committed Oct 16, 2021
1 parent 1c08fb8 commit c9dd5fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/arg.c
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ arg_p arg_src(vm_p vm, arg_type xt)
ARG_ESAC(WRx, _WRn_(x->arg));
ARG_ESAC(WRx_WR, _WRn_(x->arg));
ARG_ESAC(WR_WRy, _WRn_(x->arg));
ARG_ESAC(WR_iWRy, ld_direct(vm, _WRn_(x->arg)));
ARG_ESAC(iWRx_WR, ld_direct(vm, _WRn_(x->arg)));
ARG_ESAC(WR_iWRy, ld_indirect(vm, _WRn_(x->arg)));
ARG_ESAC(iWRx_WR, ld_indirect(vm, _WRn_(x->arg)));
ARG_ESAC(iWR_WRy, _WRn_(x->arg));
/* **** -- common arg */
ESAC_ARG(imm8)
Expand Down

0 comments on commit c9dd5fa

Please sign in to comment.