diff --git a/src/vm/index.md b/src/vm/index.md index 517f5291..f265b2c0 100644 --- a/src/vm/index.md +++ b/src/vm/index.md @@ -76,7 +76,7 @@ A complete instruction set of the Fuel VM is documented in [the following page]( ## VM Initialization -Every time the VM runs, a single monolithic memory of size `VM_MAX_RAM` bytes is allocated, indexed by individual byte. A stack and heap memory model is used, allowing for dynamic memory allocation in higher-level languages. The stack begins at `0` and grows upward. The heap begins at `VM_MAX_RAM - 1` and grows downward. +Every time the VM runs, a single monolithic memory of size `VM_MAX_RAM` bytes is allocated, indexed by individual byte. A stack and heap memory model is used, allowing for dynamic memory allocation in higher-level languages. The stack begins at `0` and grows upward. The heap begins at `VM_MAX_RAM` and grows downward. To initialize the VM, the following is pushed on the stack sequentially: