<div>I was cleaning up my VC 2005 project for the new version, and on a rebuild I encounterred the following errors in the Altair z80...</div>
<div> </div>
<div>---------- ALTAIRZ80_HDSK.C<br>uint8 hdskbuf[HDSK_MAX_SECTOR_SIZE]; = {};    /* data buffer  */</div>
<div> </div>
<div>---------- ALTAIRZ80_SIO.C<br>char messageBuffer[256]; = {};</div>
<div> </div>
<div>Visual C won't let this fly, so I changed them to the following:</div>
<div> </div>
<div>
<p>---------- ALTAIRZ80_HDSK.C<br>uint8 hdskbuf[HDSK_MAX_SECTOR_SIZE];// = {};    /* data buffer  */</p>
<p>---------- ALTAIRZ80_SIO.C<br>char messageBuffer[256];// = {};</p>
<p> </p>
<p>I'll have to chase down a copy of CP/M & Zork or something otherthan wordstar to test....</p></div>