1
0
mirror of https://github.com/simh/simh.git synced 2026-01-26 12:02:14 +00:00

sigma: Fix shutdown/detach issue with tape devices.

Also add makefile and Visual Studio Project definitions to build the incomplete/unsupported sigma and alpha simulators.
This commit is contained in:
Mark Pizzolato
2014-07-10 14:57:18 -07:00
parent b907790cc1
commit c1c5535d0b
6 changed files with 708 additions and 3 deletions

View File

@@ -1785,7 +1785,7 @@ t_stat cpu_fprint_one_inst (FILE *st, uint32 ir, t_uint64 pc, t_uint64 ra, t_uin
uint32 op;
t_value sim_val;
static const h_fmt[64] = {
static const int h_fmt[64] = {
0, 0, 0, 0, 0, 0, 0, 0,
H_MRF, H_MRF, H_MRF, H_MRF, H_MRF, H_MRF, H_MRF, H_MRF,
H_IOP, H_IOP, H_IOP, H_IOP, H_FOP, H_FOP, H_FOP, H_FOP,

View File

@@ -35,7 +35,7 @@
#include <setjmp.h>
#if defined (__GNUC__)
#define INLINE inline
#define INLINE
#else
#define INLINE
#endif