#include "block.h" //default constructor CBlock::CBlock(void): Address(0), BlockNumber(-1) {} void CBlock::InitializeBlock(int bsize, long int address, long int bnum, int pcount, BlockType type, int numpes) { BlockNumber=bnum; Address=address; ProcCount=pcount; Instructions = new struct Instr[bsize]; Type=type; NumPEs=numpes; Counters = new int[numpes]; for(int i=0; i