diff options
author | MITSUNARI Shigeo <[email protected]> | 2021-03-11 14:26:29 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2021-03-11 14:26:29 +0900 |
commit | 590c10e3746978dbfcf102d6da933ac2659e4544 (patch) | |
tree | f1feef904097f38ab1965d8e8a9a42fee70a491e | |
parent | 396715a894a18d3809890cff585e3214fbc24f39 (diff) | |
download | xbyak-590c10e3746978dbfcf102d6da933ac2659e4544.tar.gz xbyak-590c10e3746978dbfcf102d6da933ac2659e4544.zip |
fix typo
-rw-r--r-- | readme.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -347,9 +347,9 @@ public: ## User allocated memory -You can make jit code on prepaired memory. +You can make jit code on prepared memory. -Call `setProtectModeRE` yourself to change memory mode if using the prepaired memory. +Call `setProtectModeRE` yourself to change memory mode if using the prepared memory. ``` uint8_t alignas(4096) buf[8192]; // C++11 or later |