1
0
mirror of https://github.com/simh/simh.git synced 2026-05-03 22:48:35 +00:00

Compiler identified issues in AltairZ80 simulator

This commit is contained in:
Mark Pizzolato
2013-04-12 06:39:28 -07:00
parent 1936f7ff75
commit 414cf3335f
10 changed files with 69 additions and 70 deletions

View File

@@ -206,7 +206,7 @@ static uint8 mfdc_rom[256] = {
};
/* Reset routine */
t_stat mfdc_reset(DEVICE *dptr)
static t_stat mfdc_reset(DEVICE *dptr)
{
uint8 i;
PNP_INFO *pnp = (PNP_INFO *)dptr->ctxt;
@@ -228,7 +228,7 @@ t_stat mfdc_reset(DEVICE *dptr)
}
/* Attach routine */
t_stat mfdc_attach(UNIT *uptr, char *cptr)
static t_stat mfdc_attach(UNIT *uptr, char *cptr)
{
t_stat r;
unsigned int i = 0;
@@ -283,7 +283,7 @@ t_stat mfdc_attach(UNIT *uptr, char *cptr)
/* Detach routine */
t_stat mfdc_detach(UNIT *uptr)
static t_stat mfdc_detach(UNIT *uptr)
{
t_stat r;
int8 i;