I guess this is a typical flaming subject but you can atleast give some usefull advice if you chose to do so.
I can't figure out how to setup an array of struc and then use them. This is what I have come up with so far.
struc Star_struct
{
.X dw ?
.Y dw ?
.Z dw ?
.old_pos dw ?
}
SizeofStar equ 8
MaxStars equ 200
Star rb MaxStars*SizeofStar
This way Star reserves 200 Star_struct. And I have to increase Star's address to get to next element. But I want to use [Star.X] as addressing mode and only increase base address when I change to next Struc in the chain.
/Thanks