Maesltrom wrote
it's the last thing that i saw in Chapter 7 talking about pointer: "pointer: discussed later." in page 25
Not sure what you are talking about. Chapter 7 begins on page 121.
Pointer is a general programming term. A pointer is like an array index, except that the "array" is all of RAM. The "stack pointer" is an index into RAM that points to the top of the stack.
The Virtual Machine "pointer segment" is a special, fixed, location in memory, like the "temp segment". When VM code sets "pointer 0" it is setting the "this" object pointer. When the VM code sets "pointer 1" it is setting the "that" pointer. The "this" and "that" pointers, in turn, point to the start of an object in RAM.
--Mark