diff options
Diffstat (limited to 'src/Wasm/Constants.agda')
-rw-r--r-- | src/Wasm/Constants.agda | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Wasm/Constants.agda b/src/Wasm/Constants.agda new file mode 100644 index 0000000..74682a8 --- /dev/null +++ b/src/Wasm/Constants.agda @@ -0,0 +1,11 @@ +{-# OPTIONS --without-K --safe #-} + +------------------------------------------------------------------------ +-- Big constant values + +module Wasm.Constants where + +open import Data.Nat using (ℕ) + +2^32 : ℕ +2^32 = 4294967296 |