From 48d96636fa89eb47ea14004494b6203d66664814 Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Thu, 4 Jun 2020 21:17:11 -0700 Subject: [PATCH] 6465 --- html/mu_instructions.html | 1 + mu_instructions | 1 + 2 files changed, 2 insertions(+) diff --git a/html/mu_instructions.html b/html/mu_instructions.html index 82bfae86..0353f35b 100644 --- a/html/mu_instructions.html +++ b/html/mu_instructions.html @@ -120,6 +120,7 @@ compare *var1/reg1, var2/reg2 => "39/compare compare var1/reg1, var2 => "3b/compare<- *(ebp+" var2.stack-offset ") " reg1 "/r32" compare var/reg, *var2/reg2 => "3b/compare<- *" reg " " n "/imm32" compare var/eax, n => "3d/compare-eax-with " n "/imm32" +compare var/reg, n => "81 7/subop/compare %" reg " " n "/imm32" compare var, n => "81 7/subop/compare *(ebp+" var.stack-offset ") " n "/imm32" compare *var/reg, n => "81 7/subop/compare *" reg " " n "/imm32" diff --git a/mu_instructions b/mu_instructions index a1e7fc68..c5df279c 100644 --- a/mu_instructions +++ b/mu_instructions @@ -95,6 +95,7 @@ compare *var1/reg1, var2/reg2 => "39/compare *" reg1 " " reg2 "/r32" compare var1/reg1, var2 => "3b/compare<- *(ebp+" var2.stack-offset ") " reg1 "/r32" compare var/reg, *var2/reg2 => "3b/compare<- *" reg " " n "/imm32" compare var/eax, n => "3d/compare-eax-with " n "/imm32" +compare var/reg, n => "81 7/subop/compare %" reg " " n "/imm32" compare var, n => "81 7/subop/compare *(ebp+" var.stack-offset ") " n "/imm32" compare *var/reg, n => "81 7/subop/compare *" reg " " n "/imm32"