Commit-ID: b0b969eec48d9800f34dc60bff21f6eee981d8fe
Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=b0b969eec48d9800f34dc60bff21f6eee981d8fe
Author: Cyrill Gorcunov <gor...@gm...>
AuthorDate: Sun, 13 Sep 2015 17:16:06 +0300
Committer: Cyrill Gorcunov <gor...@gm...>
CommitDate: Sun, 13 Sep 2015 17:16:06 +0300
disasm: Fix segment prefix name
http://bugzilla.nasm.us/show_bug.cgi?id=3392322
Signed-off-by: Cyrill Gorcunov <gor...@gm...>
---
disasm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/disasm.c b/disasm.c
index 5e3a5e5..e748483 100644
--- a/disasm.c
+++ b/disasm.c
@@ -1684,7 +1684,7 @@ int32_t eatbyte(uint8_t *data, char *output, int outbufsize, int segsize)
str = "ss";
break;
case 0x3E:
- str = "ss";
+ str = "ds";
break;
case 0x26:
str = "es";
|