From 91533bc083d0b4aead410f5bb4c72572791fc9a9 Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Wed, 16 Dec 2015 10:07:16 -0800 Subject: [PATCH] Revert "add a warning about integer precision in Lua" This reverts commit 5544c5226b2a6a764faf1a3e7b755af7dc24e55c. --- README.md | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/README.md b/README.md index f6517ad..85c2a2a 100644 --- a/README.md +++ b/README.md @@ -9,23 +9,6 @@ It does little more than output hex. Not for production. Much of the code and syntax is untested and likely to change. Even this README is incomplete. -## Integer Precision - -**Please note:** some builds of Lua cannot precisely handle integers -larger than 24 bits. This can cause errorenous instructions to be assembled. -LuaJIT and Lua 5.3 shouldn't have this issue by default. - -Just to be safe, try running the following script: - -``` -local precise = 0x1000000 + 1 ~= 0x1000000 -if precise then - print("You're all set!") -else - print("You will have a bad time.") -end -``` - ## Syntax (TODO)