Adam wrote
Hello,
Where can I find the Interface\API for Math and Array classes? I have some methods I would like to use but don't know how they are called.
On another issue I seem to be running out of segment space while attempting to do the following
someArray[0] = someInt;
Are arrays not zero based? I printed someInt just to make sure that it's not that.
There are skeleton .jack files in project 12 that include the interface for the OS .vm files, albeit with minimal documentation.
Did you create the someArray object before trying to use it? Otherwise its this pointer is 0.
someArray = Array.new(
size);
You will want the book if you are planning to do the remaining software chapters.
--Mark