shithub: mc

Download patch

ref: f15c3cc3fc96cc9cd383f53d6dd662bfb835a1b2
parent: cec7bf1244ec1c3f4fbd8c6edb8cddd72d82ed92
author: Ori Bernstein <ori@eigenstate.org>
date: Tue Mar 8 19:11:27 EST 2016

Fix typos in tables.

	The low byte of %edi is %dil, not %sil.

--- a/6/locs.c
+++ b/6/locs.c
@@ -177,7 +177,7 @@
 		[Rdx]  = {Rnone, Rdl,  Rdx,  Redx, Rrdx},
 		[Rbx]  = {Rnone, Rbl,  Rbx,  Rebx, Rrbx},
 		[Rsi]  = {Rnone, Rsil, Rsi,  Resi, Rrsi},
-		[Rdi]  = {Rnone, Rsil, Rdi,  Redi, Rrdi},
+		[Rdi]  = {Rnone, Rdil, Rdi,  Redi, Rrdi},
 		[Rr8w]  = {Rnone, Rr8b,  Rr8w,  Rr8d,  Rr8},
 		[Rr9w]  = {Rnone, Rr9b,  Rr9w,  Rr9d,  Rr9},
 		[Rr10w] = {Rnone, Rr10b, Rr10w, Rr10d, Rr10},
@@ -192,7 +192,7 @@
 		[Redx] = {Rnone, Rdl,  Rdx,  Redx, Rrdx},
 		[Rebx] = {Rnone, Rbl,  Rbx,  Rebx, Rrbx},
 		[Resi] = {Rnone, Rsil, Rsi,  Resi, Rrsi},
-		[Redi] = {Rnone, Rsil, Rdi,  Redi, Rrdi},
+		[Redi] = {Rnone, Rdil, Rdi,  Redi, Rrdi},
 		[Rr8d]  = {Rnone, Rr8b,  Rr8w,  Rr8d,  Rr8},
 		[Rr9d]  = {Rnone, Rr9b,  Rr9w,  Rr9d,  Rr9},
 		[Rr10d] = {Rnone, Rr10b, Rr10w, Rr10d, Rr10},