mirror of
https://github.com/livingcomputermuseum/Darkstar.git
synced 2026-02-28 17:39:41 +00:00
new functionality - ethernet: new network device for direct connection to a Dodo NetHub (instead of going through a real network device) - configuration-dialog: extensions for selecting and configuring the NetHub connection - command-line: new optional parameter "-start" for starting the emulator when the UI is ready - configuration-file: added new parameters to match the items that can be specified through the UI, also to autostart the system new entries: NetHubHost, NetHubPort, AltBootMode, Start (see the sample config-file in star_os_5.0.zip for all options) changes/fixes: - development: use of SharpDevelop with .net 4.5 - ethernet: add 2 extra zero-words to prevent packets larger than 56 bytes from being ignored by the ethernet microcode - configuration-dialog: allow to specify 48 bit machine-ids (only 40 significant bits were accepted so far) - display: reversed the order of the pattern lines to match the background pattern in the main display area
62 lines
2.8 KiB
C#
62 lines
2.8 KiB
C#
using System;
|
|
|
|
/*
|
|
BSD 2-Clause License
|
|
|
|
Copyright Vulcan Inc. 2017-2018 and Living Computer Museum + Labs 2018
|
|
All rights reserved.
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
modification, are permitted provided that the following conditions are met:
|
|
|
|
* Redistributions of source code must retain the above copyright notice, this
|
|
list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright notice,
|
|
this list of conditions and the following disclaimer in the documentation
|
|
and/or other materials provided with the distribution.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
DISCLAIMED.IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/using System.Reflection;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Runtime.InteropServices;
|
|
|
|
// General Information about an assembly is controlled through the following
|
|
// set of attributes. Change these attribute values to modify the information
|
|
// associated with an assembly.
|
|
[assembly: AssemblyTitle ("Darkstar")]
|
|
[assembly: AssemblyDescription ("A Xerox Star/1108 Emulator")]
|
|
[assembly: AssemblyConfiguration ("")]
|
|
[assembly: AssemblyCompany ("Living Computers: Museum+Labs")]
|
|
[assembly: AssemblyProduct ("Darkstar")]
|
|
[assembly: AssemblyCopyright ("Copyright © 2017-2019")]
|
|
[assembly: AssemblyTrademark ("")]
|
|
[assembly: AssemblyCulture ("")]
|
|
// Setting ComVisible to false makes the types in this assembly not visible
|
|
// to COM components. If you need to access a type in this assembly from
|
|
// COM, set the ComVisible attribute to true on that type.
|
|
[assembly: ComVisible (false)]
|
|
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
|
[assembly: Guid ("0590465e-1d91-4591-946e-ee3f7d82834b")]
|
|
// Version information for an assembly consists of the following four values:
|
|
//
|
|
// Major Version
|
|
// Minor Version
|
|
// Build Number
|
|
// Revision
|
|
//
|
|
// You can specify all the values or you can default the Build and Revision Numbers
|
|
// by using the '*' as shown below:
|
|
// [assembly: AssemblyVersion("1.0.*")]
|
|
[assembly: AssemblyVersion ("1.1.9.0")]
|
|
[assembly: AssemblyFileVersion ("1.1.9.0")]
|