update to v5.85

_
diff --git a/readme.md b/readme.md
index d82bddb..89e3144 100644
--- a/readme.md
+++ b/readme.md
@@ -1,5 +1,5 @@
 
-# Xbyak 5.84 ; JIT assembler for x86(IA32), x64(AMD64, x86-64) by C++
+# Xbyak 5.85 ; JIT assembler for x86(IA32), x64(AMD64, x86-64) by C++
 
 ## Abstract
 
@@ -397,6 +397,7 @@
 http://opensource.org/licenses/BSD-3-Clause
 
 ## History
+* 2019/Dec/07 ver 5.85 append MAP_JIT flag to mmap for macOS mojave or later
 * 2019/Nov/29 ver 5.84 [changed] XBYAK_NO_OP_NAMES is defined unless XBYAK_USE_OP_NAMES is defined
 * 2019/Oct/12 ver 5.83 exit(1) was removed
 * 2019/Sep/23 ver 5.82 support monitorx, mwaitx, clzero (thanks to @MagurosanTeam)
diff --git a/readme.txt b/readme.txt
index 17deb44..48d1206 100644
--- a/readme.txt
+++ b/readme.txt
@@ -1,5 +1,5 @@
 

-    C++用x86(IA-32), x64(AMD64, x86-64) JITアセンブラ Xbyak 5.84

+    C++用x86(IA-32), x64(AMD64, x86-64) JITアセンブラ Xbyak 5.85

 

 -----------------------------------------------------------------------------

 ◎概要

@@ -373,7 +373,8 @@
 -----------------------------------------------------------------------------

 ◎履歴

 

-2019/12/29 ver 5.84 [変更] XBYAK_USE_OP_NAMESが定義されていない限りXBYAK_NO_OP_NAMESが定義されるように変更

+2019/12/07 ver 5.85 mmapにMAP_JITフラグを追加(macOS mojave以上)

+2019/11/29 ver 5.84 [変更] XBYAK_USE_OP_NAMESが定義されていない限りXBYAK_NO_OP_NAMESが定義されるように変更

 2019/10/12 ver 5.83 exit(1)の除去

 2019/09/23 ver 5.82 monitorx, mwaitx, clzero対応 (thanks to MagurosanTeam)

 2019/09/14 ver 5.81 いくつかの一般命令をサポート

diff --git a/xbyak/xbyak.h b/xbyak/xbyak.h
index b34df20..939ffee 100644
--- a/xbyak/xbyak.h
+++ b/xbyak/xbyak.h
@@ -120,7 +120,7 @@
 
 enum {
 	DEFAULT_MAX_CODE_SIZE = 4096,
-	VERSION = 0x5840 /* 0xABCD = A.BC(D) */
+	VERSION = 0x5850 /* 0xABCD = A.BC(D) */
 };
 
 #ifndef MIE_INTEGER_TYPE_DEFINED
diff --git a/xbyak/xbyak_mnemonic.h b/xbyak/xbyak_mnemonic.h
index 3ebb141..457a641 100644
--- a/xbyak/xbyak_mnemonic.h
+++ b/xbyak/xbyak_mnemonic.h
@@ -1,4 +1,4 @@
-const char *getVersionString() const { return "5.84"; }
+const char *getVersionString() const { return "5.85"; }
 void adc(const Operand& op, uint32 imm) { opRM_I(op, imm, 0x10, 2); }
 void adc(const Operand& op1, const Operand& op2) { opRM_RM(op1, op2, 0x10); }
 void adcx(const Reg32e& reg, const Operand& op) { opGen(reg, op, 0xF6, 0x66, isREG32_REG32orMEM, NONE, 0x38); }