1
0
mirror of https://github.com/simh/simh.git synced 2026-04-25 03:34:34 +00:00

PDP11, VAX: const cleanup

This commit is contained in:
Mark Pizzolato
2015-02-21 12:48:35 -08:00
parent e768629009
commit 26ef9b566a
17 changed files with 36 additions and 36 deletions

View File

@@ -81,7 +81,7 @@ extern jmp_buf save_env;
extern int32 p1;
t_stat sysb_reset (DEVICE *dptr);
char *sysb_description (DEVICE *dptr);
const char *sysb_description (DEVICE *dptr);
t_stat vax730_boot (int32 flag, char *ptr);
t_stat vax730_boot_parse (int32 flag, char *ptr);
t_stat cpu_boot (int32 unitno, DEVICE *dptr);
@@ -580,7 +580,7 @@ sim_vm_cmd = vax730_cmd;
return SCPE_OK;
}
char *sysb_description (DEVICE *dptr)
const char *sysb_description (DEVICE *dptr)
{
return "system bus controller";
}