aboutsummaryrefslogtreecommitdiff
path: root/emu.c
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2012-04-25 23:19:58 +0000
committerDimitri Sokolyuk <demon@dim13.org>2012-04-25 23:19:58 +0000
commit9fe4b4f26402142dbe812d61107bb1a0668a9450 (patch)
tree2b9b4f87db19bace6d735c5b9a8d1c6b386d15d2 /emu.c
parented10b69ca911f2274ef4322c8d9148857d08f03e (diff)
spec 1.4 mvi -> sti
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,