summary refs log tree commit diff
path: root/lisc/lisc.h
diff options
context:
space:
mode:
authorQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2015-08-16 14:19:54 -0400
committerQuentin Carbonneaux <quentin.carbonneaux@yale.edu>2015-09-15 23:01:31 -0400
commit7bbd361083db3f08e173bbf384e7369ab5ffee57 (patch)
treeac03cab8b793006864c97dff7b0fbe91c0129f98 /lisc/lisc.h
parent27f4eae43eebb4990bad59c8becdca41d2fb865d (diff)
downloadroux-7bbd361083db3f08e173bbf384e7369ab5ffee57.tar.gz
add the mul instruction
Diffstat (limited to 'lisc/lisc.h')
-rw-r--r--lisc/lisc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisc/lisc.h b/lisc/lisc.h
index 6e9ce6c..8159224 100644
--- a/lisc/lisc.h
+++ b/lisc/lisc.h
@@ -125,6 +125,7 @@ enum Op {
 	OSub,
 	ODiv,
 	ORem,
+	OMul,
 	OAnd,
 	OCmp,
 	OCmp1 = OCmp + NCmp-1,