aboutsummaryrefslogtreecommitdiff
path: root/emu.c
diff options
context:
space:
mode:
Diffstat (limited to 'emu.c')
-rw-r--r--emu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/emu.c b/emu.c
index 2324ecd..ea351c6 100644
--- a/emu.c
+++ b/emu.c
@@ -261,7 +261,7 @@ shl(unsigned short *b, unsigned short *a)
}
void
-mvi(unsigned short *b, unsigned short *a)
+sti(unsigned short *b, unsigned short *a)
{
*b = *a;
++reg[I];
@@ -363,7 +363,7 @@ void (*op[nOpt])(unsigned short *a, unsigned short *b) = {
[SHR] = shr,
[ASR] = asr,
[SHL] = shl,
- [MVI] = mvi,
+ [STI] = sti,
[IFB] = ifb,
[IFC] = ifc,
[IFE] = ife,