Data Structures
The data structure for the ROBmap now becomes a two dimensional array:
variable robmap: MAPpacket_vec(0 to REGMAX-1);
robmap(i).ptr = some_value;
type ROBMAPCTX is array (0 to SPECMAX) of MAPpacket_vec(0 to REGMAX-1);
variable robmap: ROBMAPCTX;
robmap(lastctx)(i).ptr = some_value;