1
0
mirror of https://github.com/simh/simh.git synced 2026-05-04 23:15:23 +00:00

VAX, VAX780, VAX8600, MicroVAX1, MicroVAX2: Stabilize SAVE/RESTORE capabilities to allow restore of older version VAX and VAX780 save images and to properly allow simulator restores of processor model variations as discussed in #197 points 1 & 2

This commit is contained in:
Mark Pizzolato
2015-03-30 13:52:48 -07:00
parent 478ff3d453
commit d75c072235
7 changed files with 54 additions and 8 deletions

View File

@@ -31,6 +31,13 @@
char sim_name[] = "VAX 11/780";
void vax_init(void)
{
sim_savename = "VAX780";
}
void (*sim_vm_init) (void) = &vax_init;
extern DEVICE cpu_dev;
extern DEVICE tlb_dev;
extern DEVICE sbi_dev;