mirror of
https://github.com/livingcomputermuseum/sImlac.git
synced 2026-01-15 08:03:42 +00:00
35 lines
828 B
C#
35 lines
828 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using static imlac.ImlacSystem;
|
|
|
|
namespace imlac
|
|
{
|
|
public enum ImlacCPUType
|
|
{
|
|
PDS1,
|
|
PDS4,
|
|
}
|
|
|
|
public static class Configuration
|
|
{
|
|
static Configuration()
|
|
{
|
|
MITMode = false;
|
|
CPUType = ImlacCPUType.PDS1;
|
|
SquiggleMode = false;
|
|
ShowInvisibleVectors = false;
|
|
HaltOnInvalidOpcodes = true;
|
|
}
|
|
//
|
|
// Static System configuration parameters
|
|
//
|
|
public static bool MITMode;
|
|
public static ImlacCPUType CPUType;
|
|
public static bool SquiggleMode;
|
|
public static bool ShowInvisibleVectors;
|
|
public static bool HaltOnInvalidOpcodes;
|
|
}
|
|
}
|