bobbimanners / EightBall

The Eight Bit Algorithmic Language for Apple II, Commodore 64 and VIC20
GNU General Public License v3.0
19 stars 3 forks source link

Implement support for multidimensional arrays #4

Open bobbimanners opened 6 years ago

bobbimanners commented 6 years ago

Most of the infrastructure is there to support multidimensional arrays. Need to finish this.

bobbimanners commented 6 years ago

Probably should do this using 1D arrays and pointers. For example a three dimensional array would be represented as array of pointers to array of pointers to array of type (word or byte.) This is easy to extend to arbitrary dimensions.