summaryrefslogtreecommitdiff
path: root/sys/src/cmd/7l/span.c
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2019-05-09 10:23:23 +0200
committercinap_lenrek <cinap_lenrek@felloff.net>2019-05-09 10:23:23 +0200
commite8cf7530517534ccd9f5b0469191aa7c41581120 (patch)
tree5069ad580f417529a446490ff9573a92ef538526 /sys/src/cmd/7l/span.c
parent4e7fbabfc9f33f6ea5e5a46d5d6d7532d5f68301 (diff)
7l: implement MOVP instruction
Diffstat (limited to 'sys/src/cmd/7l/span.c')
-rw-r--r--sys/src/cmd/7l/span.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/src/cmd/7l/span.c b/sys/src/cmd/7l/span.c
index fe4244099..17f57d611 100644
--- a/sys/src/cmd/7l/span.c
+++ b/sys/src/cmd/7l/span.c
@@ -1347,6 +1347,11 @@ buildop(void)
oprange[ASHA256H2] = t;
oprange[ASHA256SU1] = t;
break;
+
+ case AMOVP:
+ oprange[AMOVPW] = t;
+ oprange[AMOVPSW] = t;
+ break;
}
}
}